(get-wmiobject Win32_PerfFormattedData_PerfProc_Process -filter "name = 'msh'").PercentProcessorTime
MSH>gps msh, leave out the property you will see all instances, so if you not use the key always take care that you can get an array back.
Handles NPM(K) PM(K) WS(K) VS(M) CPU(s) Id ProcessName
------- ------ ----- ----- ----- ------ -- -----------
372 13 44764 38516 182 5,84 3616 msh
563 13 34760 30672 173 4,41 5208 msh
MSH>(get-wmiobject Win32_PerfFormattedData_PerfProc_Process -filter "IDProcess = 5208").PercentProcessorTime
0
(get-wmiobject Win32_PerfFormattedData_PerfProc_Process -filter "name = 'msh'") foreach {$_.PercentProcessorTime}but how I got to the name of this class ?
# Booleans to filter non win32_ classes and perfmon Classes
$bWin32 = $true
$bPerf = $true
MSH>$pc = new-object system.diagnostics.PerformanceCounter
MSH>$pc
CategoryName :
CounterHelp :
CounterName :
CounterType :
InstanceLifetime : Global
InstanceName :
ReadOnly : True
MachineName : .
RawValue :
Site :
Container :
MSH>[System.Diagnostics.PerformanceCounterCategory]::GetCategories()
CategoryName CategoryHelp CategoryType MachineName
------------ ------------ ------------ -----------
Terminal Services Session Terminal Services per-session r... MultiInstance .
IP The IP performance object consi... SingleInstance .
ASP.NET State Service ASP.NET State Service SingleInstance .
RSVP Interfaces RSVP Interfaces performance cou... MultiInstance .
Server The Server performance object c... SingleInstance .
MSH>$cat = new-object System.Diagnostics.PerformanceCounterCategory("Process")
MSH>$cat
CategoryName CategoryHelp CategoryType MachineName
------------ ------------ ------------ -----------
Process The Process performance object ... MultiInstance .performance object c... SingleInstance .
MSH>$cat.GetCounters()
Exception calling "GetCounters" with "0" argument(s): "Counter is not single instance, an instance name needs to be specified.".
At line:1 char:17
+ $cat.GetCounters( <<<< )
MSH>$cat.GetInstanceNames()
VCSExpress
PRONoMgr
notepad#15
evmgr
boinc
MowConsole
notepad#13
MSH>$cat.GetCounters("notepad#13")
CategoryName : Process
CounterHelp : % Processor Time is the percentage of elapsed time that all of process threads used the processor to execution instructi
ons. An instruction is the basic unit of execution in a computer, a thread is the object that executes instructions, and
a process is the object created when a program is run. Code executed to handle some hardware interrupts and trap condit
ions are included in this count.
CounterName : % Processor Time
CounterType : Timer100Ns
InstanceLifetime : Global
InstanceName : notepad#13
ReadOnly : True
MachineName : .
RawValue : 91562500
Site :
Container :
.....
.....
MSH>$pc.nextvalue()
0
MSH>$pc.nextSample()
RawValue : 44062500
BaseValue : 0
SystemFrequency : 3000160000
CounterFrequency : 10000000
CounterTimeStamp : 127786339665937500
TimeStamp : 3882482312876355
TimeStamp100nSec : 127786339664843750
CounterType : Timer100Ns
October 2005 November 2005 December 2005 January 2006 February 2006 March 2006 April 2006 May 2006 June 2006 July 2006 August 2006 September 2006 October 2006 November 2006 December 2006