我想对pscustomobject使用Format-Table -Autosize。

我想要相当于:

Get-Process | ft Id,ProcessName -AutoSize

我试过了(尽管输出位于中间)
Get-Process | %{
            [pscustomobject]@{
                ID   = $_.Id
                ProcessName  = $_.ProcessName
            }
}

它可以工作,但是当我使用Format-Table -Autosize时,它不能工作,它将用新行添加新标题。
Get-Process | %{
            [pscustomobject]@{
                ID   = $_.Id
                ProcessName  = $_.ProcessName
            } | Format-Table -AutoSize
}

如何解决这个问题?

最佳答案

您的管道位置错误。

Get-Process | %{
            [pscustomobject]@{
                ID   = $_.Id
                ProcessName  = $_.ProcessName
            }
} | Format-Table -AutoSize

您是在告诉它为每个元素输出一个表,而不是按预期使用管道。

关于powershell - 将格式表与pscustomobject一起使用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30353988/

10-13 08:12