0

如果你开始一个工作(A),而这个工作又开始另一个工作(B),是否可以通过使用这样的东西来获取(B)的输出?

(Get-Job -Name A).ChildJobs[0].ChildJobs[0]...

我希望我可以递归地深入研究对象,但奇怪(Get-Job -Name A).ChildJobs[0]的是总是有一个空的 ChildJobs 集合。这可能只是我对如何创造就业机会的误解。

一种解决方法是等到作业 B 完成,获取其输出,将其存储在变量中,然后对变量执行写入输出,以便父脚本可以处理它。它有效,但这意味着我必须等到作业 B 完成,这可能需要 10-40 分钟。

我也许可以(在作业 B 中)在输出出现在平面文件或 SQLite 数据库时立即将其写入,但我希望我可以从脚本的最顶层范围中获取它。

这是一个例子

    Get-Job | Remove-Job

$ErrorActionPreference = "stop"

$Level1Job = {
    $Level2Job = {
        $Level3Job = {
            Write-Output "Level 3, start"

            Start-Sleep -s 5

            Write-Output "Level 3, end"
        }

        Write-Output "Level 2, start"

        # start the third job...
        Start-Job -ScriptBlock $Level3Job -Name "level 3"

        # wait for the job to complete
        while(get-job | where-object { ($_.State -ne "completed") -and ($_.State -ne "failed") }){ Start-Sleep -s 2 }

        Start-Sleep -s 5

        Write-Output "Level 2, end"
    }

    Write-Output "Level 1, start"

    # start the second job on the remote computer...
    Start-Job -ScriptBlock $Level2Job -Name "level 2"

    # wait for the job to complete
    while(get-job | where-object { ($_.State -ne "completed") -and ($_.State -ne "failed") }){ Start-Sleep -s 2 }

    Start-Sleep -s 5

    Write-Output "Level 1, end"
}

# start the first job...
Start-Job -ScriptBlock $Level1Job -Name "level 1"

# wait for the job to complete
while(get-job | where-object { ($_.State -ne "completed") -and ($_.State -ne "failed") }){ Start-Sleep -s 2 }

Start-Sleep –s 5


(get-job)[0].ChildJobs[0] | fl *
4

1 回答 1

0

ChildJobs 用于远程作业。例如,如果你使用Invoke-Command -ScriptBlock { ... } -AsJob -ComputerName YourRemoteComputer一个远程作业(ChildJob)和一个本地作业,它会处理远程作业。

您有来自 的作业对象start-Job。如果您的第一份工作返回此对象,您可以接收它并读取输出

于 2015-09-01T17:17:36.790 回答