请告知我们如何附加以下脚本输出。
$CtrList = @(
"\System\Processor Queue Length",
"\Memory\Pages/sec",
"\Memory\Available MBytes",
"\Processor(*)\% Processor Time",
"\Network Interface(*)\Bytes Received/sec",
"\Network Interface(*)\Bytes Sent/sec",
"\LogicalDisk(C:)\% Free Space",
"\LogicalDisk(*)\Avg. Disk Queue Length"
)
Get-Counter -Counter $CtrList -SampleInterval 5 -MaxSamples 5 | Export-Counter -Path C:\Example.csv -FileFormat CSV -Force
答案 0 :(得分:0)
我认为最干净的方法是将计数器直接输出到CSV字符串,但由于没有这样的功能,我们必须使用临时文件来暂存数据。
A
每次运行它时,它都会附加到输出文件中。如果您重新开始,只需删除输出文件,或指定新的输出文件。