Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Monitor Operating System ObjectsContent of Monitor Operating System Objects.vbsMD5 Hash: 17A5B1FDA4505CC5DF0180A66E885AC5 |
||
' Description: Uses cooked performance counters to return the count of the objects maintained by the operating system, including events, mutexes, processes, sections, semaphores, and threads.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") set objRefresher = CreateObject("WbemScripting.SWbemRefresher") Set colItems = objRefresher.AddEnum _ (objWMIService, "Win32_PerfFormattedData_PerfOS_Objects").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 "Events: " & objItem.Events Wscript.Echo "Mutexes: " & objItem.Mutexes Wscript.Echo "Name: " & objItem.Name Wscript.Echo "Processes: " & objItem.Processes Wscript.Echo "Sections: " & objItem.Sections Wscript.Echo "Semaphores: " & objItem.Semaphores Wscript.Echo "Threads: " & objItem.Threads objRefresher.Refresh Next Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |