Win32_PerfRawData_IAS_IASAuthenticationClients vbscript sample code
The foundations for Manageability in Windows is Windows Management Instrumentation (WMI; formerly WBEM) and WMI extensions for Windows Driver Model (WDM).
ActiveXperts Network Monitor provides the ability to build monitor check routines based on WMI. ActiveXperts has collected more than a hundred WMI samples. You can use these samples as a base for new check routines you can write yourself. The Win32_PerfRawData_IAS_IASAuthenticationClients WMI class can be used in ActiveXperts Network Monitor to monitor your servers.
Description
The Win32_PerfFormattedData_ContentIndex_IndexingService "cooked" data performance counter class represents calcuated 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.
Sample Code
On Error Resume Next strComputer = "." Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2") Set colItems = objWMIService.ExecQuery("Select * from Win32_PerfRawData_IAS_IASAuthenticationClients",,48) For Each objItem in colItems Wscript.Echo "AccessAccepts: " & objItem.AccessAccepts Wscript.Echo "AccessAcceptsPersec: " & objItem.AccessAcceptsPersec Wscript.Echo "AccessChallenges: " & objItem.AccessChallenges Wscript.Echo "AccessChallengesPersec: " & objItem.AccessChallengesPersec Wscript.Echo "AccessRejects: " & objItem.AccessRejects Wscript.Echo "AccessRejectsPersec: " & objItem.AccessRejectsPersec Wscript.Echo "AccessRequests: " & objItem.AccessRequests Wscript.Echo "AccessRequestsPersec: " & objItem.AccessRequestsPersec Wscript.Echo "BadAuthenticators: " & objItem.BadAuthenticators Wscript.Echo "BadAuthenticatorsPersec: " & objItem.BadAuthenticatorsPersec Wscript.Echo "Caption: " & objItem.Caption Wscript.Echo "Description: " & objItem.Description Wscript.Echo "DroppedPackets: " & objItem.DroppedPackets Wscript.Echo "DroppedPacketsPersec: " & objItem.DroppedPacketsPersec Wscript.Echo "DuplicateAccessRequests: " & objItem.DuplicateAccessRequests Wscript.Echo "DuplicateAccessRequestsPersec: " & objItem.DuplicateAccessRequestsPersec Wscript.Echo "Frequency_Object: " & objItem.Frequency_Object Wscript.Echo "Frequency_PerfTime: " & objItem.Frequency_PerfTime Wscript.Echo "Frequency_Sys100NS: " & objItem.Frequency_Sys100NS Wscript.Echo "MalformedPackets: " & objItem.MalformedPackets Wscript.Echo "MalformedPacketsPersec: " & objItem.MalformedPacketsPersec Wscript.Echo "Name: " & objItem.Name Wscript.Echo "PacketsReceived: " & objItem.PacketsReceived Wscript.Echo "PacketsReceivedPersec: " & objItem.PacketsReceivedPersec Wscript.Echo "PacketsSent: " & objItem.PacketsSent Wscript.Echo "PacketsSentPersec: " & objItem.PacketsSentPersec Wscript.Echo "Timestamp_Object: " & objItem.Timestamp_Object Wscript.Echo "Timestamp_PerfTime: " & objItem.Timestamp_PerfTime Wscript.Echo "Timestamp_Sys100NS: " & objItem.Timestamp_Sys100NS Wscript.Echo "UnknownType: " & objItem.UnknownType Wscript.Echo "UnknownTypePersec: " & objItem.UnknownTypePersec Next