Category (Kategorie): Video and SoundDescription (Beschreibung): The CIM_VideoControllerResolution class represents the various video modes that a video controller can support. Video modes are defined by the possible horizontal and vertical resolutions, refresh rate, scan mode and number of colors settings supported by a controller. The actual resolutions, and so on, that are in use, are the values specified in the CIM_VideoController object.Availability (Verfügbarkeit):
Sample Code (Beispiel): strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from CIM_VideoControllerResolution")
For Each objItem in colItems
Wscript.Echo "Caption: " & objItem.Caption
Next
Links: Link zur Original-Microsoft-Dokumentation |