Difference between revisions of "Top"
Jump to navigation
Jump to search
(Created page with "# Powershell like commands - https://superuser.com/questions/176624/linux-top-command-for-windows-powershell#176625") |
|||
Line 1: | Line 1: | ||
# Powershell like commands | # Powershell like commands | ||
- https://superuser.com/questions/176624/linux-top-command-for-windows-powershell#176625 | - https://superuser.com/questions/176624/linux-top-command-for-windows-powershell#176625 | ||
+ | |||
+ | ``` | ||
+ | (Get-Counter '\Process(*)\% Processor Time').CounterSamples | Where-Object {$_.CookedValue -gt 5} | Sort-Object -Property cookedvalue -Descending | ||
+ | ``` |
Revision as of 19:55, 18 August 2022
Powershell like commands
(Get-Counter '\Process(*)\% Processor Time').CounterSamples | Where-Object {$_.CookedValue -gt 5} | Sort-Object -Property cookedvalue -Descending