多个服务器版本上与区域设置无关的Windows性能计数器

时间:2016-12-20 10:16:13

标签: windows powershell windows-server-2008 windows-server-2003 performancecounter

我尝试使用以下代码读取Performance counter的值:

(Get-Counter '\Processor(_Total)\% Processor Time').CounterSamples[0].CookedValue;

这是一个依赖于语言的命令,因此尝试使用以下代码使该语言独立:

(Get-Counter '\238(_Total)\6').CounterSamples[0].CookedValue;

它与区域设置无关,但我发现它不适用于基于Windows Server 2003的系统,因为此版本中尚未定义此对象。 我怎样才能在Server 2003上使用它?

0 个答案:

没有答案