Win32_DisplayControllerConfiguration vbscript sample code | ActiveXperts Network Monitor
The foundations for Manageability in Windows is Windows Management Instrumentation (WMI; formerly WBEM) and WMI extensions for Windows Driver Model (WDM).
ActiveXperts Network Monitor provides the ability to build monitor check routines based on WMI. ActiveXperts has collected more than a hundred WMI samples. You can use these samples as a base for new check routines you can write yourself. The Win32_DisplayControllerConfiguration WMI class can be used in ActiveXperts Network Monitor to monitor your servers.
Description
The Win32_DisplayControllerConfiguration WMI class represents the video adapter configuration information of a Windows system.
Sample Code
On Error Resume Next
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_DisplayControllerConfiguration",,48)
For Each objItem in colItems
Wscript.Echo "BitsPerPixel: " & objItem.BitsPerPixel
Wscript.Echo "Caption: " & objItem.Caption
Wscript.Echo "ColorPlanes: " & objItem.ColorPlanes
Wscript.Echo "Description: " & objItem.Description
Wscript.Echo "DeviceEntriesInAColorTable: " & objItem.DeviceEntriesInAColorTable
Wscript.Echo "DeviceSpecificPens: " & objItem.DeviceSpecificPens
Wscript.Echo "HorizontalResolution: " & objItem.HorizontalResolution
Wscript.Echo "Name: " & objItem.Name
Wscript.Echo "RefreshRate: " & objItem.RefreshRate
Wscript.Echo "ReservedSystemPaletteEntries: " & objItem.ReservedSystemPaletteEntries
Wscript.Echo "SettingID: " & objItem.SettingID
Wscript.Echo "SystemPaletteEntries: " & objItem.SystemPaletteEntries
Wscript.Echo "VerticalResolution: " & objItem.VerticalResolution
Wscript.Echo "VideoMode: " & objItem.VideoMode
Next
