Quantcast
Channel: TechNet Blogs
Viewing all articles
Browse latest Browse all 17778

PowerTip: Use PowerShell to Find Performance of Processes

$
0
0

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

 


Viewing all articles
Browse latest Browse all 17778

Trending Articles



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