我想连接到远程主机,运行 2 个命令并返回单独的响应。但是,我想将此作为一个脚本块的一部分。我以前用一个命令做过这个,但用两个命令就不高兴了。例如有
gc "C:\test.txt"
和
get-webservice | ? {$_.Name -eq "foo"}
组合成一个脚本块并将该脚本块传递给Invoke-Command并从该调用中提取各个响应。
我想连接到远程主机,运行 2 个命令并返回单独的响应。但是,我想将此作为一个脚本块的一部分。我以前用一个命令做过这个,但用两个命令就不高兴了。例如有
gc "C:\test.txt"
和
get-webservice | ? {$_.Name -eq "foo"}
组合成一个脚本块并将该脚本块传递给Invoke-Command并从该调用中提取各个响应。
一种选择是将结果加载到哈希表中,然后返回。
$Scriptblock =
{
$response = @{}
$response.dir = gc "C:\test.txt"
$response.service = get-webservice | ? {$_.Name -eq "w32time"}
$response
}
$result = &$Scriptblock
这消除了任何命令返回空值的结果中的任何歧义。
不完全确定我理解你的问题,你有没有这样尝试过:
$Workload = {
$TestText = Get-Content "C:\test.txt"
$WebServices = Get-WebService | ? {$_.Name -eq "foo"}
$TestText,$WebServices
}
$FirstJob,$SecondJob = Invoke-Command -Session $remoteSession -ScriptBlock $Workload
function scriptBlockContent ($myFile)
{
$TestText = Get-Content $myFile
$WebServices = Get-WebService | ? {$_.Name -eq "foo"}
$TestText,$WebServices
}
$FirstJob,$SecondJob = Invoke-Command -Session $remoteSession -ScriptBlock ${function:scriptBlockContent} -ArgumentList $myFile