Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Modify the TCP Window Size for All Network AdaptersContent of Modify the TCP Window Size for All Network Adapters.vbsMD5 Hash: 97DD1EC56D997E6BF26EDF8A341E2E9C |
||
' Description: Sets the TCP window size for all network adapters on a computer. Valid windows sizes range from 0 to 65,535 bytes.
On Error Resume Next strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set objNetworkSettings = objWMIService.Get("Win32_NetworkAdapterConfiguration") objNetworkSettings.SetTCPWindowSize(65535) | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |