Friday, March 2, 2018

Find High-CPU Processes with PowerShell

It's easy to find the processes on a computer with PowerShell by calling Get-Process:

Get-Process | Sort-Object CPU -Descending




This command gets the computer's running processes, pipes them into Sort-Object, which displays the processes using the most CPU in Descending order.
 

No comments:

Post a Comment