Powershell:Export-Excel不导出数据行,仅导出标题

问题描述

我正在尝试将一些数据导出到excel工作表中,并且仅导出标头,而不是数据行。我已经验证了数据行在变量$ info中。为什么没有导出数据行?感谢您的帮助。

$ info变量由以下代码填充:

$info = Get-CimInstance -ComputerName $serverList -ClassName win32_operatingsystem | Select-Object csname,lastbootuptime,LocalDateTime | sort-object lastbootuptime | Format-Table

导出Excel代码

$info | Select-Object csname,LastBootupTime,LocalDateTime | Export-Excel -Path $destinationPath -WorksheetName LastBootUpTime

当前结果:

enter image description here

所需结果:

enter image description here

解决方法

如果使用Format-Table之类的cmdlet格式,则可以将丰富而强大的点网对象变成屏幕上愚蠢无聊的像素。 ;-)因此,这种情况下的解决方案是在变量声明的末尾省略Format-Table

$info = Get-CimInstance -ComputerName $serverList -ClassName win32_operatingsystem | 
    Select-Object -Property csname,lastbootuptime,LocalDateTime | 
        Sort-Object -Property LastBootupTime

$info | Export-Excel -Path $destinationPath -WorksheetName LastBootUpTime