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