PowerTip: Use PowerShell to Find Performance of Processes

Doctor Scripto

Summary: Use Windows PowerShell to quickly find the performance of process CPU utilization.

Hey, Scripting Guy! Question How can I quickly and easily find the minimum, maximum, and average CPU utilization by various processes?

Hey, Scripting Guy! Answer 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

 

0 comments

Discussion is closed.

Feedback usabilla icon