Get-counter

From UVOO Tech Wiki
Revision as of 20:20, 16 July 2022 by Busk (talk | contribs)
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

https://adamtheautomator.com/powershell-get-process/