Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Enable Single Session Terminal Service SessionsContent of Enable Single Session Terminal Service Sessions.vbsMD5 Hash: 2D0110B31AA2C8127B4A124873135365 |
||
' Description: Enables single session Terminal Service sessions on a computer. To allow multiple sessions, pass the value 0 (rather than 1) to the SetSingleSession parameter.
Const ENABLE = 1 strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}\\" & strComputer & "\root\cimv2") Set colItems = objWMIService.ExecQuery _ ("Select * from Win32_TerminalServiceSetting") For Each objItem in colItems errResult = objItem.SetSingleSession(ENABLE) Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |