Difference between revisions of "Top"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
− | # Powershell like commands | + | # Windows |
+ | ## 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 | ||
Line 6: | Line 7: | ||
``` | ``` | ||
+ | # Sumo | ||
# Other | # Other | ||
- https://www.cbtnuggets.com/blog/certifications/microsoft/how-to-find-performance-counters-with-powershell | - https://www.cbtnuggets.com/blog/certifications/microsoft/how-to-find-performance-counters-with-powershell |
Revision as of 20:03, 18 August 2022
Windows
Powershell like commands
(Get-Counter '\Process(*)\% Processor Time').CounterSamples | Where-Object {$_.CookedValue -gt 5} | Sort-Object -Property cookedvalue -Descending