2013-01-16 65 views
0

我想運行得到一組計算機的計數器並將值輸出到csv,我看到Export-Counter沒有附加參數?Export-Counter -Fileformat csv append?

有人可以幫助瞭解如何使用Export-Counter附加csv wiith更多的信息,我知道export-csv有一個附加參數,但是如果我想將數據附加到由Export-Counter生成的csv,該怎麼辦。

+0

和什麼是你的問題? –

+0

爲什麼不使用'-ircular'開關,我認爲它是爲此而做的?請參閱http://technet.microsoft.com/en-us/library/hh849683.aspx –

回答

0

我想你在這裏有2個選擇。如果您需要它來打印報告,並使用export-csv進行保存。例如:

Get-Counter | select ...(if you want need to modify output)| Export-Csv -Append test2.txt -NoTypeInformation 

如果你需要它以後導入(需要真正performancecountersampleset對象),儘量保存以前的一個數組中,並添加新的計數器。例如:

$path = "C:\test.csv" 

#1st time 
Get-Counter | Export-Counter $path -FileFormat csv 

#Next time you use 
$a = Import-Counter $path 
$array = @($a) 
$b = Get-Counter 
$array += $b 
$array | Export-Counter $path -FileFormat csv -Force