Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Modify Terminal Services Windows Authentication SettingContent of Modify Terminal Services Windows Authentication Setting.vbsMD5 Hash: C1D07C558A28BD2E371D0CD0B7C510F8 |
||
' Description: Configures Terminal Services to use standard Windows authentication. To disable standard authentication (in order to use a custom authentication package), set the value of the WindowsAuthentication property to 0 rather than 1.
Const STANDARD_AUTHENTICATION = 1 strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colItems = objWMIService.ExecQuery("Select * from Win32_TSGeneralSetting") For Each objItem in colItems objItem.WindowsAuthentication = STANDARD_AUTHENTICATION objItem.Put_ Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |