Contact Info

Crumbtrail

ActiveXperts.com » Administration » Scripts » WMI » jscript sample

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


Sample Code

var strComputer = ".";

var objWMIService = GetObject("winmgmts:\\\\" + strComputer + "\\root\\CIMV2");
var colItems = objWMIService.ExecQuery("SELECT * FROM Win32_PerfFormattedData_McuFactoryPerf_LCMCUF00MCUFactory", "WQL");

var enumItems = new Enumerator(colItems);

for (; !enumItems.atEnd(); enumItems.moveNext()) {
	var objItem = enumItems.item();
	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("MCUF000TotalGetMCURequestsReceived: " + objItem.MCUF000TotalGetMCURequestsReceived);
	WScript.Echo("MCUF001TotalGetMCURequestsFailed: " + objItem.MCUF001TotalGetMCURequestsFailed);
	WScript.Echo("MCUF002TotalemptyGetMCUResponses: " + objItem.MCUF002TotalemptyGetMCUResponses);
	WScript.Echo("MCUF003GetMCURequestsReceivedPersec: " + objItem.MCUF003GetMCURequestsReceivedPersec);
	WScript.Echo("MCUF004TotalHealthNotificationsReceived: " + objItem.MCUF004TotalHealthNotificationsReceived);
	WScript.Echo("MCUF005TotalHealthNotificationsFailed: " + objItem.MCUF005TotalHealthNotificationsFailed);
	WScript.Echo("MCUF006HealthNotificationsReceivedPersec: " + objItem.MCUF006HealthNotificationsReceivedPersec);
	WScript.Echo("MCUF007TotalDrainRequestsReceived: " + objItem.MCUF007TotalDrainRequestsReceived);
	WScript.Echo("MCUF008TotalDrainRequestsAccepted: " + objItem.MCUF008TotalDrainRequestsAccepted);
	WScript.Echo("MCUF009TotalDrainRequestsRejected: " + objItem.MCUF009TotalDrainRequestsRejected);
	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("")
	WScript.Echo("########")
	WScript.Echo("")
}