Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Monitor NET Framework NETCLR Exceptions PerformanceContent of Monitor NET Framework NETCLR Exceptions Performance.vbsMD5 Hash: 89ACCAEB4C10BF2C41905781342A2C4C |
||
' Description: Uses cooked performance counters to monitor CLR exceptions performance on a computer running .NET Frameworks 1.1.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") set objRefresher = CreateObject("WbemScripting.SWbemRefresher") Set colItems = objRefresher.AddEnum(objWMIService, " & _ "Win32_PerfFormattedData_NETFramework_NETCLRExceptions").objectSet objRefresher.Refresh For i = 1 to 5 For Each objItem in colItems Wscript.Echo "Exceptions thrown: " & objItem.NumberOfExcepsThrown Wscript.Sleep 2000 objRefresher.Refresh Next Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |