vote up 0 vote down star
1

Is there a way for a PowerShell job to report progress or to trigger events before it is complete? I just started playing around with executing background jobs in PowerShell and am wondering how far I can push the capability.

flag

2 Answers

vote up 3 vote down

The standard "manual" way is to use the Get-Job cmdlet. As for events, when you create a job with Start-Job, the Job object returned has a "StateChanged" event on it you can subscribe to e.g.:

$job = Start-Job { Get-Process; Start-Sleep -seconds 60 }
Register-ObjectEvent $job -EventName StateChanged `
    -SourceIdentifier JobStateChanged `
    -Action { Write-Host "Job $($Sender.Id) $($Sender.JobStateInfo)" }
link|flag
vote up 1 vote down

You can also raise your own custom events from within a local or remote job and act on them in the local session. I'm writing a brief blog entry on this; watch this space.

-Oisin

powershell mvp

www.nivot.org

link|flag
update this answer with a proper link when it's posted – spoon16 Sep 14 at 18:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.