Contact Info

Crumbtrail

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

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


System

Example(s)

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

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

For Each objItem in colItems
	WScript.Echo "AlignmentFixupsPersec:" & objItem.AlignmentFixupsPersec
	WScript.Echo "Caption:" & objItem.Caption
	WScript.Echo "ContextSwitchesPersec:" & objItem.ContextSwitchesPersec
	WScript.Echo "Description:" & objItem.Description
	WScript.Echo "ExceptionDispatchesPersec:" & objItem.ExceptionDispatchesPersec
	WScript.Echo "FileControlBytesPersec:" & objItem.FileControlBytesPersec
	WScript.Echo "FileControlOperationsPersec:" & objItem.FileControlOperationsPersec
	WScript.Echo "FileDataOperationsPersec:" & objItem.FileDataOperationsPersec
	WScript.Echo "FileReadBytesPersec:" & objItem.FileReadBytesPersec
	WScript.Echo "FileReadOperationsPersec:" & objItem.FileReadOperationsPersec
	WScript.Echo "FileWriteBytesPersec:" & objItem.FileWriteBytesPersec
	WScript.Echo "FileWriteOperationsPersec:" & objItem.FileWriteOperationsPersec
	WScript.Echo "FloatingEmulationsPersec:" & objItem.FloatingEmulationsPersec
	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 "PercentRegistryQuotaInUse:" & objItem.PercentRegistryQuotaInUse
	WScript.Echo "Processes:" & objItem.Processes
	WScript.Echo "ProcessorQueueLength:" & objItem.ProcessorQueueLength
	WScript.Echo "SystemCallsPersec:" & objItem.SystemCallsPersec
	WScript.Echo "SystemUpTime:" & objItem.SystemUpTime
	WScript.Echo "Threads:" & objItem.Threads
	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 ""
Next