LCUSrv17RPCClient - WMI sample in VBScript
The foundations for Manageability in Windows 2019/2012/2008/ and Windows 10/8/7/Vista/XP are 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.
On this site, you can find many WMI samples.
The LCUSrv17RPCClient WMI class can be used in ActiveXperts Network Monitor to monitor your servers.
LCUSrv17RPCClient
Example(s)
Set objWMIService = GetObject("winmgmts:\\.\root\cimv2") Set colItems = objWMIService.ExecQuery("Select * From Win32_PerfRawData_WRTCESPf_LCUSrv17RPCClient") For Each objItem in colItems WScript.Echo "Caption:" & objItem.Caption WScript.Echo "Description:" & objItem.Description WScript.Echo "Frequency_Object:" & objItem.Frequency_Object WScript.Echo "Frequency_PerfTime:" & objItem.Frequency_PerfTime WScript.Echo "Frequency_Sys100NS:" & objItem.Frequency_Sys100NS WScript.Echo "Name:" & objItem.Name WScript.Echo "Timestamp_Object:" & objItem.Timestamp_Object WScript.Echo "Timestamp_PerfTime:" & objItem.Timestamp_PerfTime WScript.Echo "Timestamp_Sys100NS:" & objItem.Timestamp_Sys100NS WScript.Echo "USrv000OutstandingOutboundRPCCalls:" & objItem.USrv000OutstandingOutboundRPCCalls WScript.Echo "USrv001OutboundRPCCalls:" & objItem.USrv001OutboundRPCCalls WScript.Echo "USrv002OutboundRPCCallsPerSec:" & objItem.USrv002OutboundRPCCallsPerSec WScript.Echo "USrv003SIPNotificationsBatched:" & objItem.USrv003SIPNotificationsBatched WScript.Echo "USrv004SIPNotificationsBatchedPerSec:" & objItem.USrv004SIPNotificationsBatchedPerSec WScript.Echo "USrv005OutboundRPCCallLatencyms:" & objItem.USrv005OutboundRPCCallLatencyms WScript.Echo "USrv005OutboundRPCCallLatencyms_Base:" & objItem.USrv005OutboundRPCCallLatencyms_Base WScript.Echo "USrv007OutboundRPCNonRuntimeFailures:" & objItem.USrv007OutboundRPCNonRuntimeFailures WScript.Echo "USrv008AccessDeniedErrors:" & objItem.USrv008AccessDeniedErrors WScript.Echo "USrv009ServerUnavailableErrors:" & objItem.USrv009ServerUnavailableErrors WScript.Echo "USrv010EndpointNotRegisteredErrors:" & objItem.USrv010EndpointNotRegisteredErrors WScript.Echo "USrv011CallFailedErrors:" & objItem.USrv011CallFailedErrors WScript.Echo "USrv012CallCancelledErrors:" & objItem.USrv012CallCancelledErrors WScript.Echo "USrv013InvalidAsyncHandleErrors:" & objItem.USrv013InvalidAsyncHandleErrors WScript.Echo "USrv014OtherRPCRuntimeFailures:" & objItem.USrv014OtherRPCRuntimeFailures WScript.Echo "USrv015RPCBindingResets:" & objItem.USrv015RPCBindingResets WScript.Echo "USrv016CallsFailedOnBindingReset:" & objItem.USrv016CallsFailedOnBindingReset WScript.Echo "USrv017EndpointResolutionsAttempted:" & objItem.USrv017EndpointResolutionsAttempted WScript.Echo "USrv018EndpointResolutionsSucceeded:" & objItem.USrv018EndpointResolutionsSucceeded WScript.Echo "USrv019EndpointResolutionsFailed:" & objItem.USrv019EndpointResolutionsFailed WScript.Echo "USrv020EndpointResolutionSuccessLatencyms:" & objItem.USrv020EndpointResolutionSuccessLatencyms WScript.Echo "USrv021EndpointResolutionFailureLatencyms:" & objItem.USrv021EndpointResolutionFailureLatencyms WScript.Echo "" WScript.Echo "########" WScript.Echo "" Next