For anyone who is interested in the vbscript to report the graphics card information:
[tt][blue]
On Error Resume Next
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_VideoController",,48)
Wscript.Echo "Items collected: " & colItems
Wscript.Echo upper(colItems)
For Each objItem in colItems
Wscript.Echo "AdapterRAM: " & FormatNumber(objItem.AdapterRAM /1024\1024, 0) & " MB"
Wscript.Echo "Caption: " & objItem.Caption
Next
[/blue][/tt]
GGleason, you should download a copy of scriptomatic from microsoft.com/scripting. It will show you all of the different classes that WMI supports and write scripts for you.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.