Get-counter

From UVOO Tech Wiki
Revision as of 20:19, 16 July 2022 by Busk (talk | contribs) (Created page with "``` get-counter '\Process(*)\IO Read Bytes/sec' | Format-List Get-Counter '\Processor(_Total)\% Processor Time' Get-Counter '\Memory\Available MBytes' (Get-Counter '\Pro...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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 *


https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/get-process?view=powershell-7.2