Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Modify Terminal Services Color Depth PolicyContent of Modify Terminal Services Color Depth Policy.vbsMD5 Hash: E8ED50041A7618F53D4B71A54BB1A2B2 |
||
' Description: Enables the color depth policy on a computer running Terminal Services. To disable this policy, pass the value 0 (rather than 1) to the SetColorDepthPolicy method.
Const ENABLE = 1 strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}\\" & strComputer & "\root\cimv2") Set colItems = objWMIService.ExecQuery("Select * from Win32_TSClientSetting") For Each objItem in colItems errResult = objItem.SetColorDepthPolicy(ENABLE) Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |