Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Modify the IGMP Level for All Network AdaptersContent of Modify the IGMP Level for All Network Adapters.vbsMD5 Hash: 5AB5F6E6CF6C25CE19533F32F29EF5D7 |
||
' Description: Disables IGMP multicasting on a computer. To enable IP multicasting, pass the value 1 to the SetIGMPLevel method. Pass the value 2 to allow both IP and IGMP multicasting.
On Error Resume Next strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set objNetworkSettings = objWMIService.Get("Win32_NetworkAdapterConfiguration") objNetworkSettings.SetIGMPLevel(0) | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |