Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Modify Terminal Services Encryption LevelContent of Modify Terminal Services Encryption Level.vbsMD5 Hash: 6BF1FADF610E1AC6B3650A5936175087 |
||
' Description: Configures Terminal Services to use high encryption (parameter value of 3). To use low-encryption, pass the SetEncryptionLevel method a value of 1. Client-compatible encryption uses a value of 2, and FIPS-compliant encryption uses a value of 4.
Const HIGH_ENCRYPTION = 3 strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}\\" & strComputer & "\root\cimv2") Set colItems = objWMIService.ExecQuery("Select * from Win32_TSGeneralSetting") For Each objItem in colItems errResult = objItem.SetEncryptionLevel(HIGH_ENCRYPTION) Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |