1

我想连接到远程主机,运行 2 个命令并返回单独的响应。但是,我想将此作为一个脚本块的一部分。我以前用一个命令做过这个,但用两个命令就不高兴了。例如有

gc "C:\test.txt"

get-webservice | ? {$_.Name -eq "foo"}

组合成一个脚本块并将该脚本块传递给Invoke-Command并从该调用中提取各个响应。

4

3 回答 3

3

一种选择是将结果加载到哈希表中,然后返回。

$Scriptblock = 
{
  $response = @{}
  $response.dir = gc "C:\test.txt"
  $response.service = get-webservice | ? {$_.Name -eq "w32time"}
  $response
}

$result = &$Scriptblock

这消除了任何命令返回空值的结果中的任何歧义。

于 2015-06-02T16:02:53.620 回答
1

不完全确定我理解你的问题,你有没有这样尝试过:

$Workload = {
    $TestText = Get-Content "C:\test.txt"
    $WebServices = Get-WebService | ? {$_.Name -eq "foo"}

    $TestText,$WebServices
}

$FirstJob,$SecondJob = Invoke-Command -Session $remoteSession -ScriptBlock $Workload
于 2015-06-02T15:54:26.583 回答
0
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
于 2015-06-03T04:34:28.717 回答