Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Modify the Default Time-to-Live for All Network AdaptersContent of Modify the Default Time-to-Live for All Network Adapters.vbsMD5 Hash: E88E26F82E39413A0264CBB1CCD6D217 |
||
' Description: Sets the default time-to-live value in the header of outgoing IP packets to 64 (this represents the number of routers an IP packet can pass through before being discarded). Valid TTL values range from 1 to 255, with a default value of 32.
On Error Resume Next strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set objNetworkSettings = objWMIService.Get("Win32_NetworkAdapterConfiguration") objNetworkSettings.SetDefaultTTL(64) | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |