Contact Info

Crumbtrail

ActiveXperts.com » Administration » Scripts » WMI Performance Counters » VBScript

LCUSrv21ConferenceFocusBase - 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 LCUSrv21ConferenceFocusBase WMI class can be used in ActiveXperts Network Monitor to monitor your servers.


LCUSrv21ConferenceFocusBase

Example(s)

Set objWMIService = GetObject("winmgmts:\\.\root\cimv2")

Set colItems = objWMIService.ExecQuery("Select * From Win32_PerfRawData_WRTCESPf_LCUSrv21ConferenceFocusBase")

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 "USrv000INVITEsreceived:" & objItem.USrv000INVITEsreceived
	WScript.Echo "USrv001INVITEsreceivedPersec:" & objItem.USrv001INVITEsreceivedPersec
	WScript.Echo "USrv002INFOsreceived:" & objItem.USrv002INFOsreceived
	WScript.Echo "USrv003INFOsreceivedPersec:" & objItem.USrv003INFOsreceivedPersec
	WScript.Echo "USrv004SUBSCRIBEsreceived:" & objItem.USrv004SUBSCRIBEsreceived
	WScript.Echo "USrv005SUBSCRIBEsreceivedPersec:" & objItem.USrv005SUBSCRIBEsreceivedPersec
	WScript.Echo "USrv006BYEsreceived:" & objItem.USrv006BYEsreceived
	WScript.Echo "USrv007BYEsreceivedPersec:" & objItem.USrv007BYEsreceivedPersec
	WScript.Echo "USrv008ACKsreceived:" & objItem.USrv008ACKsreceived
	WScript.Echo "USrv009ACKsreceivedPersec:" & objItem.USrv009ACKsreceivedPersec
	WScript.Echo "USrv010CANCELsreceived:" & objItem.USrv010CANCELsreceived
	WScript.Echo "USrv011CANCELsreceivedPersec:" & objItem.USrv011CANCELsreceivedPersec
	WScript.Echo "USrv012UPDATEsreceived:" & objItem.USrv012UPDATEsreceived
	WScript.Echo "USrv013UPDATEsreceivedPersec:" & objItem.USrv013UPDATEsreceivedPersec
	WScript.Echo "USrv014Otherrequestsreceived:" & objItem.USrv014Otherrequestsreceived
	WScript.Echo "USrv015OtherrequestsreceivedPersec:" & objItem.USrv015OtherrequestsreceivedPersec
	WScript.Echo "USrv016Crashedendpointsdisconnected:" & objItem.USrv016Crashedendpointsdisconnected
	WScript.Echo "USrv017CrashedendpointsdisconnectPerSec:" & objItem.USrv017CrashedendpointsdisconnectPerSec
	WScript.Echo "USrv018Conferencesautomaticallydeactivated:" & objItem.USrv018Conferencesautomaticallydeactivated
	WScript.Echo "USrv019ConferencesautomaticallydeactivatedPerSec:" & objItem.USrv019ConferencesautomaticallydeactivatedPerSec
	WScript.Echo "USrv020Conferencesthatcouldnotbeautomaticallydeactivated:" & objItem.USrv020Conferencesthatcouldnotbeautomaticallydeactivated
	WScript.Echo "USrv021ConferencesthatcouldnotbeautomaticallydeactivatedPerSec:" & objItem.USrv021ConferencesthatcouldnotbeautomaticallydeactivatedPerSec
	WScript.Echo ""
	WScript.Echo "########"
	WScript.Echo ""
Next