Hidix17 Posted November 24, 2014 Share Posted November 24, 2014 Is it possible to detect graphics card model? For example: "NVIDIA GeForce GTX 780" or other. Link to comment Share on other sites More sharing options...
Solution mikell Posted November 24, 2014 Solution Share Posted November 24, 2014 (edited) Yes, using WMI $objWMIService = ObjGet("winmgmts:\\.\root\CIMV2") $colItems = $objWMIService.ExecQuery("SELECT * FROM Win32_DisplayConfiguration", "WQL", 0x10 + 0x20) If IsObj($colItems) then For $objItem In $colItems $Output = $objItem.DeviceName Next Endif Msgbox(0,"", $Output) Edited November 24, 2014 by mikell Hidix17 1 Link to comment Share on other sites More sharing options...
Hidix17 Posted November 25, 2014 Author Share Posted November 25, 2014 Thank you very much Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now