LCUSrv25ConferenceMcuAllocator - 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 LCUSrv25ConferenceMcuAllocator WMI class can be used in ActiveXperts Network Monitor to monitor your servers.
LCUSrv25ConferenceMcuAllocator
Example(s)
Set objWMIService = GetObject("winmgmts:\\.\root\cimv2") Set colItems = objWMIService.ExecQuery("Select * From Win32_PerfRawData_WRTCESPf_LCUSrv25ConferenceMcuAllocator") 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 "USrv000Mcuallocationrequests:" & objItem.USrv000Mcuallocationrequests WScript.Echo "USrv001McuallocationrequestsPersec:" & objItem.USrv001McuallocationrequestsPersec WScript.Echo "USrv002Mcureallocationrequests:" & objItem.USrv002Mcureallocationrequests WScript.Echo "USrv003McureallocationrequestsPersec:" & objItem.USrv003McureallocationrequestsPersec WScript.Echo "USrv004Mcuallocationrequestssatisfiedthroughdatabase:" & objItem.USrv004Mcuallocationrequestssatisfiedthroughdatabase WScript.Echo "USrv005Mcuallocationrequestsoutstanding:" & objItem.USrv005Mcuallocationrequestsoutstanding WScript.Echo "USrv006FactoryCalls:" & objItem.USrv006FactoryCalls WScript.Echo "USrv007FactoryCallsPersec:" & objItem.USrv007FactoryCallsPersec WScript.Echo "USrv008FactoryCallsUnsuccessful:" & objItem.USrv008FactoryCallsUnsuccessful WScript.Echo "USrv009FactoryUnreachableFailures:" & objItem.USrv009FactoryUnreachableFailures WScript.Echo "USrv010FactoryCallsTimedOut:" & objItem.USrv010FactoryCallsTimedOut WScript.Echo "USrv011FactoryCallLatencymsec:" & objItem.USrv011FactoryCallLatencymsec WScript.Echo "USrv011FactoryCallLatencymsec_Base:" & objItem.USrv011FactoryCallLatencymsec_Base WScript.Echo "USrv013CreateConferenceRequests:" & objItem.USrv013CreateConferenceRequests WScript.Echo "USrv014CreateConferenceRequestsPersec:" & objItem.USrv014CreateConferenceRequestsPersec WScript.Echo "USrv015CreateConferencerequestsRejected:" & objItem.USrv015CreateConferencerequestsRejected WScript.Echo "USrv016CreateConferenceMcuUnreachableFailures:" & objItem.USrv016CreateConferenceMcuUnreachableFailures WScript.Echo "USrv017CreateConferenceRequestsTimedOut:" & objItem.USrv017CreateConferenceRequestsTimedOut WScript.Echo "USrv018CreateConferencerequestsOutstanding:" & objItem.USrv018CreateConferencerequestsOutstanding WScript.Echo "USrv019CreateConferenceLatencymsec:" & objItem.USrv019CreateConferenceLatencymsec WScript.Echo "USrv019CreateConferenceLatencymsec_Base:" & objItem.USrv019CreateConferenceLatencymsec_Base WScript.Echo "USrv021AllocationLatencymsec:" & objItem.USrv021AllocationLatencymsec WScript.Echo "USrv021AllocationLatencymsec_Base:" & objItem.USrv021AllocationLatencymsec_Base WScript.Echo "USrv023IncomingPingRequestsfromMcu:" & objItem.USrv023IncomingPingRequestsfromMcu WScript.Echo "USrv024OutgoingPingConferenceRequests:" & objItem.USrv024OutgoingPingConferenceRequests WScript.Echo "USrv025OutgoingPingConferenceRequestsSucceeded:" & objItem.USrv025OutgoingPingConferenceRequestsSucceeded WScript.Echo "USrv026Mcureallocationrequestsinwaitqueue:" & objItem.USrv026Mcureallocationrequestsinwaitqueue WScript.Echo "USrv027Mcureallocationrequestsfailed:" & objItem.USrv027Mcureallocationrequestsfailed WScript.Echo "" WScript.Echo "########" WScript.Echo "" Next