Find video card info

pbenham
Contributor

Hi,

is there a quick way (using Casper) to find out which video card is installed in a laptop? I'm thinking I probably need to create an Extension Attribute, but wondered if there was any other way.

thanks

paul



Paul Benham
Desktop Operations Analyst
Bates College
110 Russell Street
Lewiston, ME 04240
PH: 207-786-6382
pbenham at bates.edu

2 REPLIES 2

tlarkin
Honored Contributor

extension attribute would be a good way I think, and you can do it with this code

bash-3.2# system_profiler SPDisplaysDataType | awk '/Chipset Model:/ { print $3 }' ATY,RadeonX1600

I do not see a video chipset option in the advanced search data.

-Tom

jarednichols
Honored Contributor

Yep, this is how we do it. Extension Attribute via script

#!/bin/sh

chipset=system_profiler -detaillevel mini | grep Chipset | cut -d : -f 2
echo "<result>$chipset</result>"

j
--
Jared F. Nichols
Desktop Engineer, Client Services
Information Services Department
MIT Lincoln Laboratory
244 Wood Street
Lexington, Massachusetts 02420
781.981.5436