Difference between revisions of "Get-counter"
Jump to navigation
Jump to search
(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...") |
|||
Line 16: | Line 16: | ||
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/get-process?view=powershell-7.2 | https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/get-process?view=powershell-7.2 | ||
+ | |||
+ | |||
+ | https://adamtheautomator.com/powershell-get-process/ |
Revision as of 20:20, 16 July 2022
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 *