将服务器信息输出到Excel文件

时间:2016-01-08 09:48:40

标签: excel powershell

我有一个可以为我生成服务器状态信息的PowerShell脚本。我现在的问题是我想将结果输出到Excel文件。

PowerShell代码:

virtual

输出到Excel:

enter image description here enter image description here

1 个答案:

答案 0 :(得分:0)

您可以使用Export-CsvExport-Csv file path -NoTypeInformation)。这是命令。 如果你想使用数组,那么你必须定义它。您可以查看this question

E.g。 $variable | Export-Csv c:\output.csv -notypeinformtion