我正在努力获得一个powershell命令,该命令允许我提取远程服务器的所有核心的平均CPU百分比,并将该值输出为数字百分比。我很关闭,但还没有找到一种方法来获取数值。以下是我使用的命令,后跟输出。
Get-WmiObject -computer server -class win32_processor | Measure-Object -property LoadPercentage -Average | FL average
Average : 30.5
提前感谢您的帮助!
答案 0 :(得分:1)
尝试使用Select-Object
的{{1}}参数来获取属性的值。更新的脚本:
ExpandProperty