StatisticalInformation - WMI sample in Powershell
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 StatisticalInformation WMI class can be used in ActiveXperts Network Monitor to monitor your servers.
StatisticalInformation
Example(s)
$strComputer = "." $objWMi = get-wmiobject -computername localhost -Query "Select * from CIM_StatisticalInformation" foreach ($obj in $objWmi) { write-host "ActiveProcesses:" $obj.ActiveProcesses write-host "Caption:" $obj.Caption write-host "Description:" $obj.Description write-host "Name:" $obj.Name write-host "OtherOperationCount:" $obj.OtherOperationCount write-host "OtherTransferCount:" $obj.OtherTransferCount write-host "PeakJobMemoryUsed:" $obj.PeakJobMemoryUsed write-host "PeakProcessMemoryUsed:" $obj.PeakProcessMemoryUsed write-host "ReadOperationCount:" $obj.ReadOperationCount write-host "ReadTransferCount:" $obj.ReadTransferCount write-host "ThisPeriodTotalKernelTime:" $obj.ThisPeriodTotalKernelTime write-host "ThisPeriodTotalUserTime:" $obj.ThisPeriodTotalUserTime write-host "TotalKernelTime:" $obj.TotalKernelTime write-host "TotalPageFaultCount:" $obj.TotalPageFaultCount write-host "TotalProcesses:" $obj.TotalProcesses write-host "TotalTerminatedProcesses:" $obj.TotalTerminatedProcesses write-host "TotalUserTime:" $obj.TotalUserTime write-host "WriteOperationCount:" $obj.WriteOperationCount write-host "WriteTransferCount:" $obj.WriteTransferCount write-host write-host "########" write-host }