Community FAQ
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
googoo
Engaged Sweeper III
I need some help with SQL....

I'm looking for a way to export a report of all computers with a particular video adapter and the driver version it is running. I can find this info by looking at CONFIG\VIDEO CARD for each pc, so I'm sure the right SQL query will give what I need.

I'm looking for all computers with: ATI RADEON HD 2400*

Any help would be appreciated.

thanks
1 ACCEPTED SOLUTION
Hemoco
Lansweeper Alumni
try this

Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, tblVideoController.Caption,
tblVideoController.DriverVersion
From tblComputers Inner Join
tblVideoController On tblComputers.Computername =
tblVideoController.Computername
Where tblVideoController.Caption Like 'ATI RADEON HD 2400%'

View solution in original post

2 REPLIES 2
googoo
Engaged Sweeper III
that did it, thanks for the help.

Hemoco
Lansweeper Alumni
try this

Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, tblVideoController.Caption,
tblVideoController.DriverVersion
From tblComputers Inner Join
tblVideoController On tblComputers.Computername =
tblVideoController.Computername
Where tblVideoController.Caption Like 'ATI RADEON HD 2400%'

Reports & Analytics

Ask about reports you're interested in and share reports you've created. Subscribe to receive daily updates of reports shared in the Community.

New to Lansweeper?

Try Lansweeper For Free

Experience Lansweeper with your own data.
Sign up now for a 14-day free trial.

Try Now