Get-counter
Jump to navigation
Jump to search
get-counter '\Process(*)\IO Read Bytes/sec' | Format-List
Get-Counter '\Processor(_Total)\% Processor Time'
Get-Counter '\Memory\Available MBytes'
(Get-Counter '\Process(*)\% Processor Time').CounterSamples | Where-Object {$_.CookedValue -gt 5}
Get-Process winword, explorer | Format-List *