-
Notifications
You must be signed in to change notification settings - Fork 160
How To Asynchronously Access All Stream Outputs From Background Jobs In PowerShell
In this article, we will learn how to asynchronously access all stream outputs from background jobs in PowerShell. We will use the Start-Job
cmdlet to start a job for each animal in the list. We will then use the Register-ObjectEvent
cmdlet to create an event subscriber for the job to automatically receive the job output for all streams and discard itself and the job. We will also use the Unregister-Event
cmdlet to remove the event itself and the Remove-Job
cmdlet to remove the event subscriber's job.
We will also properly communicate any terminating or non-terminating error that ocurred inside of each job to the console.
[System.String[]]$JobNames = 'cat', 'dog', 'Zebra', 'kangaroo'
# Start a job for each animal in the list
foreach ($JobName in $JobNames) {
$CurrentJob = Start-Job -Name "Animals $JobName" -ScriptBlock {
Param ($JobNameInput)
Start-Sleep -Seconds 2
Write-Output -InputObject "Job started for $JobNameInput"
# Simulate some real work
Start-Sleep -Seconds (Get-Random -Minimum 1 -Maximum 10)
# Generate terminating error
# Throw "Error message for $JobNameInput"
# Generate Non-terminating error
Write-Error -Message "Error message 1 for $JobNameInput"
Write-Warning -Message "Warning message for $JobNameInput"
Write-Debug -Message "Debug Message for $JobNameInput" -Debug
Write-Verbose -Message "Verbose message for $JobNameInput" -Verbose
Write-Error -Message "Error message 2 for $JobNameInput"
Write-Output -InputObject "Output message for $JobNameInput"
Write-Host -Object "Host message for $JobNameInput"
Write-Information -MessageData "Information message for $JobNameInput"
} -ArgumentList $JobName
# Create an event subscriber for the job to automatically receive the job output for all streams and discard itself and the job
Register-ObjectEvent -InputObject $CurrentJob -EventName StateChanged -Action {
# Receive the Write-Output stream for success stream
# Write-Host is needed to display the error message on the console
# We need to use loop because all of the Write-Output messages are stored in the ChildJobs.Output property
# And without a loop, they would all be written as a single string on in one line
if ($null -ne $EventSubscriber.SourceObject.ChildJobs.Output) {
$EventSubscriber.SourceObject.ChildJobs.Output | ForEach-Object -Process {
Write-Host -Object $_
}
}
# Check if a terminating error ocurred in the job
if ($EventSubscriber.SourceObject.State -eq 'Failed') {
Write-Host -Object "The Job $($EventSubscriber.SourceObject.Name) Failed" -ForegroundColor Red
}
# Receive the Terminating error stream - Write-Host is needed to display the error message on the console
if ($null -ne $EventSubscriber.SourceObject.ChildJobs.JobStateInfo.Reason.Message) {
$EventSubscriber.SourceObject.ChildJobs.JobStateInfo.Reason.Message | ForEach-Object -Process {
Write-Host -Object $_ -ForegroundColor Red
}
}
# Receive the Non-Terminating error stream - Write-Host is needed to display the error message on the console
if ($null -ne $EventSubscriber.SourceObject.ChildJobs.Error) {
$EventSubscriber.SourceObject.ChildJobs.Error | ForEach-Object -Process {
Write-Host -Object $_ -ForegroundColor DarkRed
}
}
# Receive the job output except for Wire-Output and error stream
Receive-Job -Job $EventSubscriber.SourceObject
# Unregister the event itself
Unregister-Event -SourceIdentifier $EventSubscriber.SourceIdentifier -Force
# Remove the event subscriber's job, it is the same as the event subscriber's SourceIdentifier
Remove-Job -Name $EventSubscriber.SourceIdentifier -Force
# Remove the input job initiated by Start-Job
Remove-Job -Id $EventSubscriber.SourceObject.Id -Force
} | Out-Null
}
# Get all of the jobs at the end to make sure there is no leftover
# Get-Job
# Make sure all of the event subscriptions have been properly removed at the end
# (Get-EventSubscriber).SourceIdentifier
# https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_automatic_variables#eventsubscriber
# $EventSubscriber inside of the action block is the same as the following objects
# (Get-EventSubscriber)[0].SourceObject.ChildJobs.JobStateInfo.Reason.Message
# (Get-EventSubscriber).SourceObject.ChildJobs.output
when you use Start-Job
to initiate a background job, it executes the provided script block in a separate, child job. This is because Start-Job
is designed to run tasks asynchronously, allowing the main PowerShell session to continue without waiting for the task to complete.
The child job is essentially a separate PowerShell process that runs in the background. It's isolated from the parent job, which means it has its own scope and doesn't share variables or RunSpaces with the parent. This isolation ensures that the main session remains responsive and that the background task doesn't interfere with the ongoing tasks in the main session.
- Create AppControl Policy
- Create Supplemental Policy
- System Information
- Configure Policy Rule Options
- Simulation
- Allow New Apps
- Build New Certificate
- Create Policy From Event Logs
- Create Policy From MDE Advanced Hunting
- Merge App Control Policies
- Deploy App Control Policy
- Get Code Integrity Hashes
- Get Secure Policy Settings
- Update
- Introduction
- App Control for Lightly Managed Devices
- App Control for Fully managed device - Variant 1
- App Control for Fully managed device - Variant 2
- App Control for Fully managed device - Variant 3
- App Control for Fully managed device - Variant 4
- App Control Notes
- How to Create and Deploy a Signed App Control Policy
- Fast and Automatic Microsoft Recommended Driver Block Rules updates
- App Control policy for BYOVD Kernel mode only protection
- EKUs in App Control for Business Policies
- App Control Rule Levels Comparison and Guide
- Script Enforcement and PowerShell Constrained Language Mode in App Control Policies
- How to Use Microsoft Defender for Endpoint Advanced Hunting With App Control
- App Control Frequently Asked Questions (FAQs)
- New-WDACConfig
- New-SupplementalWDACConfig
- Remove-WDACConfig
- Edit-WDACConfig
- Edit-SignedWDACConfig
- Deploy-SignedWDACConfig
- Confirm-WDACConfig
- New-DenyWDACConfig
- Set-CommonWDACConfig
- New-KernelModeWDACConfig
- Get-CommonWDACConfig
- Remove-CommonWDACConfig
- Assert-WDACConfigIntegrity
- Test-CiPolicy
- Get-CiFileHashes
- Get-CIPolicySetting
- Create Bootable USB flash drive with no 3rd party tools
- Event Viewer
- Group Policy
- How to compact your OS and free up extra space
- Hyper V
- Overrides for Microsoft Security Baseline
- Git GitHub Desktop and Mandatory ASLR
- Signed and Verified commits with GitHub desktop
- About TLS, DNS, Encryption and OPSEC concepts
- Things to do when clean installing Windows
- Comparison of security benchmarks
- BitLocker, TPM and Pluton | What Are They and How Do They Work
- How to Detect Changes in User and Local Machine Certificate Stores in Real Time Using PowerShell
- Cloning Personal and Enterprise Repositories Using GitHub Desktop
- Only a Small Portion of The Windows OS Security Apparatus
- Rethinking Trust: Advanced Security Measures for High‐Stakes Systems
- Clean Source principle, Azure and Privileged Access Workstations
- How to Securely Connect to Azure VMs and Use RDP
- Basic PowerShell tricks and notes
- Basic PowerShell tricks and notes Part 2
- Basic PowerShell tricks and notes Part 3
- Basic PowerShell tricks and notes Part 4
- Basic PowerShell tricks and notes Part 5
- How To Access All Stream Outputs From Thread Jobs In PowerShell In Real Time
- PowerShell Best Practices To Follow When Coding
- How To Asynchronously Access All Stream Outputs From Background Jobs In PowerShell
- Powershell Dynamic Parameters and How to Add Them to the Get‐Help Syntax
- RunSpaces In PowerShell
- How To Use Reflection And Prevent Using Internal & Private C# Methods in PowerShell