Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Monitor Thread Details Performance -- CostlyContent of Monitor Thread Details Performance -- Costly.vbsMD5 Hash: 8145D74B9F96740C6CDA9FC3817891B6 |
||
' Description: Uses cooked performance counters to return information about thread behavior that are difficult or time-consuming to collect.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") set objRefresher = CreateObject("WbemScripting.SWbemRefresher") Set colItems = objRefresher.AddEnum(objWMIService, _ "Win32_PerfFormattedData_PerfProc_ThreadDetails_Costly").objectSet objRefresher.Refresh For i = 1 to 5 For Each objItem in colItems Wscript.Echo "Caption: " & objItem.Caption Wscript.Echo "Description: " & objItem.Description Wscript.Echo "Name: " & objItem.Name Wscript.Echo "User PC: " & objItem.UserPC Wscript.Sleep 2000 objRefresher.Refresh Next Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |