Reference for Win32_DisplayControllerConfiguration
|
|
Category (Kategorie): Video and Sound
Description (Beschreibung): The Win32_DisplayControllerConfiguration WMI class represents the video adapter configuration information of a Windows system.
This class is obsolete. In place of this class, you should use the properties in the Win32_VideoController, Win32_DesktopMonitor, and CIM_VideoControllerResolution classes.
Availability (Verfügbarkeit):
Sample Code (Beispiel):
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_DisplayConfigurationController")
For Each objItem in colItems
Wscript.Echo "Caption: " & objItem.Caption
Next
Links:
Link zur Original-Microsoft-Dokumentation
www.IT-Visions.de, (C) Dr. Holger Schwichtenberg
|