使用PowerShell确定CPU浪费

时间:2019-04-10 17:01:18

标签: powershell-v2.0

我正在对分配给VM的CPU浪费进行监控。

我正在使用笔记本电脑作为测试。我找到了一些要使用的代码

Get-Counter -ComputerName LID10022830 '\Process(*)\% Processor Time' `
| Select-Object -ExpandProperty countersamples `
| Select-Object -Property instancename, cookedvalue `
| Sort-Object -Property cookedvalue -Descending | Select-Object -First 2 `
| ft InstanceName,@{L='CPU';E={($_.Cookedvalue/100).toString('P')}} -AutoSize

我的测试系统具有以下内容:

InstanceName CPU    
------------ ---    
_total       396.21%
idle         172.47%

我可以说笔记本电脑运行时分配了43.4%的CPU吗?

0 个答案:

没有答案