Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Enable PMTU Discovery on all Network AdaptersContent of Enable PMTU Discovery on all Network Adapters.vbsMD5 Hash: 786BFF7041260FC480F11AF69A368DAF |
||
' Description: Enables a computer to automatically discover the maximum transmission unit on a network. To disable auto-discovery of the maximum transmission unit, pass the value False to the SetPMTUDiscovery method.
On Error Resume Next strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set objNetworkSettings = objWMIService.Get("Win32_NetworkAdapterConfiguration") objNetworkSettings.SetPMTUDiscovery(True) | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |