Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

On Windows, how can my user-mode program get the driver version number(s) for the video card(s) installed?

Programs like ATI's "Catalyst Control Center" can display this information to the user or include it automatically into bug reports. How do they get it?

I've been looking thru the PSDK documentation, and I can't find anything relevant.

Can a user program walk thru the database that Device Manager displays?
Is there an IOCTL call like getting disk drive geometry?
Is it in a (reliable) registry key?

share|improve this question

3 Answers

up vote 5 down vote accepted

In PowerShell:

Get-WmiObject Win32_VideoController | format-table Name, Description,VideoProcessor,DriverVersion

The WMI objects are also available from any language that speaks COM or .Net.

ETA: You may wish to exclude records without a value for VideoProcessor, like the Live Mesh drivers. I did that by including |where {$_.VideoProcessor -ne $null } in the pipeline before the format command.

share|improve this answer
Thanks for the starting point. I'll look there. – Die in Sente Jan 2 '09 at 20:18
Thanks, JasonTrue. Given that starting point, I've figured out how to do this in C++. – Die in Sente Jan 12 '09 at 2:22

I used "dxdiag /x output.xml", then get the video driver version by parsing "output.xml". dxdiag is slow, but it tells the one correct driver version..

I used python to do this job. Inspired by Jason's answer, I get the following code:

>>> import wmi
>>> c = wmi.WMI()
>>> for device in c.Win32_VideoController():
    if device.VideoProcessor:
        print device.DriverVersion
share|improve this answer

I've had to solve this problem before. I believe you actually have to get the File Version information of the associated driver file.

share|improve this answer
1  
But how do you identify the driver file? – Die in Sente Jan 2 '09 at 20:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.