Hidix17 Posted November 24, 2014 Posted November 24, 2014 Is it possible to detect graphics card model? For example: "NVIDIA GeForce GTX 780" or other.
Solution mikell Posted November 24, 2014 Solution 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
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