Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Determine the Current Screen Resolution Being Used on a ComputerContent of Determine the Current Screen Resolution Being Used on a Computer.vbsMD5 Hash: 7CC37CA61230413224C4D023D5328DF5 |
||
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2") Set colItems = objWMIService.ExecQuery _ ("Select * From Win32_DisplayConfiguration") For Each objItem in colItems Wscript.Echo "Name: " & objItem.DeviceName Wscript.Echo "Color depth: " & objItem.BitsPerPel Wscript.Echo "Horizontal resolution: " & objItem.PelsWidth Wscript.Echo "Vertical resolution: " & objItem.PelsHeight Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |