Summary: Use Windows PowerShell to quickly find the performance of process CPU utilization.
How can I quickly and easily find the minimum, maximum, and average CPU utilization by various processes?
Open Windows PowerShell with Admin rights. Use the Get-Process cmdlet, pipe the results to the Measure-Object cmdlet, choose the CPU property, and use the –Minimum, -Maximum, and –Average switches:
Get-Process | Measure-Object -Property cpu -Minimum -Maximum -Average