如何存储Format-Table的输出以供以后使用
我有一个脚本可以创建多个作业并在作业中存储两个简单的值。
Start-Job -ScriptBlock {param ([string]$compip) tnc $compip | select RemoteAddress,PingSucceeded -WarningAction SilentlyContinue} -ArgumentList $compip
这很好用。我想知道的是如何将以下代码存储到变量中?
Get-Job | Receive-Job | sort RemoteAddress | FT
我试过这个,但它没有像我想的那样工作:
$pcs = Get-Job | Receive-Job | sort RemoteAddress | FT $pcs.RemoteAddress
我是以错误的方式去做的吗?我想存储get-job
上面命令中的数据,以便稍后在脚本中使用这些值。我认为它会工作,因为输出看起来正确:命令:
Get-Job | Receive-Job | sort RemoteAddress | FT
输出:
RemoteAddress PingSucceeded
------------- -------------
192.168.0.163 True
192.168.0.101 False
192.168.0.2 False
192.168.0.251 True
翻过高山走不出你