发布网友 发布时间:2022-04-23 17:56
共1个回答
热心网友 时间:2022-05-15 12:32
$counters=new-object 'System.Diagnostics.PerformanceCounter[]' ([System.Environment]::ProcessorCount)
for($i=0;$i -lt $counters.Length;$i++){
$counters[$i]=new-object System.Diagnostics.PerformanceCounter("Processor", "% Processor Time",$i)
}
while(1){
foreach($c in $counters){
$c.NextValue();
}
sleep 1
}追问那个RawValue的值是一个很长的值,看上去不是使用率
追答现在是了