Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Monitor Indexing Service Filter PerformanceContent of Monitor Indexing Service Filter Performance.vbsMD5 Hash: D55B95512B103F1AA415BEE0B32E1336 |
||
' Description: Uses cooked performance counters to return information about Indexing Service filter performance.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") set objRefresher = CreateObject("WbemScripting.SWbemRefresher") Set colItems = objRefresher.AddEnum(objWMIService, " & _ "Win32_PerfFormattedData_ContentFilter_IndexingServiceFilter").objectSet objRefresher.Refresh For i = 1 to 5 For Each objItem in colItems Wscript.Echo "Binding Time in Milliseconds: " & _ objItem.Bindingtimemsec Wscript.Echo "Caption: " & objItem.Caption Wscript.Echo "Description: " & objItem.Description Wscript.Echo "Indexing Speed, Megabytes Per Hour: " & _ objItem.IndexingspeedMBPerhr Wscript.Echo "Name: " & objItem.Name Wscript.Echo "Total Indexing Speed, Megabytes Per Hour: " & _ objItem.TotalindexingspeedMBPerhr Wscript.Sleep 2000 objRefresher.Refresh Next Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |