Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Monitor TCP-IP ICMPv6 PerformanceContent of Monitor TCP-IP ICMPv6 Performance.vbsMD5 Hash: 788FAB34766C86171EE5739E70235A1A |
||
' Description: Uses cooked performance counters to monitor the rates at which messages are sent and received by using ICMPv6 protocols.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") set objRefresher = CreateObject("WbemScripting.SWbemRefresher") Set colItems = objRefresher.AddEnum _ (objWMIService, "Win32_PerfFormattedData_TCPIP_ICMPv6").objectSet objRefresher.Refresh For i = 1 to 5 For Each objItem in colItems Wscript.Echo "Messages per second: " & objItem.MessagesPerSec Wscript.Sleep 2000 objRefresher.Refresh Next Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |