Quantcast
Viewing all articles
Browse latest Browse all 3333

PowerTip: Use PowerShell to Find Performance of Processes

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

Image may be NSFW.
Clik here to view.
Hey, Scripting Guy! Question
 How can I quickly and easily find the minimum, maximum, and average CPU utilization by various processes?

Image may be NSFW.
Clik here to view.
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

 

Image may be NSFW.
Clik here to view.

Image may be NSFW.
Clik here to view.

Viewing all articles
Browse latest Browse all 3333

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>