Reference for Win32_PerfFormattedData_ContentIndex_IndexingService
|
|
Category (Kategorie): Server Services
Description (Beschreibung): The Win32_PerfFormattedData_ContentIndex_IndexingService "cooked" data performance counter class represents performance data about the state of the Indexing Service. The Indexing Service is a service which manages, querys, and indexes information in file systems or Web servers. Using filters that understand a file's format, the service extracts content into catalogs of indexes for efficient searching.
This class is shown as the Indexing Service object in System Monitor. The WMI source of its data is the high-performance Cooked Counter Provider. This class derives its raw data from the corresponding raw class Win32_PerfRawData_ContentIndex_IndexingService. The original data source is the ContentIndex performance library. This class was added for Windows XP.
Availability (Verfügbarkeit):
Sample Code (Beispiel):
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
set objRefresher = CreateObject("WbemScripting.SWbemRefresher")
Set colItems = objRefresher.AddEnum _
(objWMIService, "Win32_PerfFormattedData_ContentIndex_IndexingService").objectSet
objRefresher.Refresh
For i = 1 to 5
For Each objItem in colItems
Wscript.Echo "Number of documents indexed: " & objItem.NumberDocumentsIndexed
Wscript.Sleep 2000
objRefresher.Refresh
Next
Next
Links:
Link zur Original-Microsoft-Dokumentation
www.IT-Visions.de, (C) Dr. Holger Schwichtenberg
|