将PowerShell对象输出到字符串中

时间:2014-07-09 19:13:12

标签: string powershell format

此代码启动ping:

$ProcessInfo = New-Object System.Diagnostics.ProcessStartInfo
$ProcessInfo.FileName = "ping.exe"
$ProcessInfo.RedirectStandardError = $true
$ProcessInfo.RedirectStandardOutput = $true
$ProcessInfo.UseShellExecute = $false
$ProcessInfo.Arguments = "localhost"
$Proc = New-Object System.Diagnostics.Process
$Proc.StartInfo = $ProcessInfo
$Proc.Start() | Out-Null

当我在命令中键入$ Proc时,

$Proc

我明白了:

Handles  NPM(K)    PM(K)      WS(K) VM(M)   CPU(s)     Id ProcessName
-------  ------    -----      ----- -----   ------     -- -----------
     27       3     1936       1852    10     0.02   6832 PING

我想将数据行变成字符串。

所以我尝试了这个:

$Proc | Format-table -HideTableHeaders

我得到了这个:

 27       3     1936       1852    10     0.02   6832 PING

我试过了:

$Foo = $Proc | Format-table -HideTableHeaders
$Foo

得到了这个:

Microsoft.PowerShell.Commands.Internal.Format.FormatStartData Microsoft.PowerShell.Commands.Internal.Format.GroupStartData Microsoft.PowerShell.Commands.Internal.Format.FormatEntryData Microsoft.PowerShell.Commands.Internal.Format.GroupEndData Microsoft.PowerShell.Commands.Internal.Format.FormatEndData

所以问题是......你如何通常将PowerShell对象的字符串输出变为字符串?

最终我所要做的就是在我的powershell脚本中单独输入$ Proc时,在我正常输出前面加上START一词。

START     27       3     1936       1852    10     0.02   6832 PING

但是,“开始”+ $ Proc产生了这个:

Start System.Diagnostics.Process (PING)

这就是为什么我以为我会尝试将$ Proc变成字符串。

1 个答案:

答案 0 :(得分:13)

像...这样的东西。

$string = $proc | Format-Table -HideTableHeaders | Out-String

"start" + $string