-
Notifications
You must be signed in to change notification settings - Fork 139
How To Access All Stream Outputs From Thread Jobs In PowerShell In Real Time
Violet edited this page Apr 6, 2024
·
2 revisions
The following code snippet demonstrates how to access all stream outputs from thread jobs in PowerShell in real time. It uses the Start-ThreadJob
cmdlet to start the thread jobs and the Receive-Job
cmdlet to access the job output streams. The code snippet also demonstrates how to access the warning, debug, verbose, output, host, and information streams from the thread jobs.
It is properly commented to explain each part of the code.
[System.String[]]$JobNames = 'cat', 'dog', 'Zebra', 'kangaroo'
# A hashtable to store the jobs
[System.Collections.Hashtable]$Jobs = @{}
# Start a job for each animal in the list
foreach ($JobName in $JobNames) {
[System.Management.Automation.Job2]$CurrentJob = Start-ThreadJob -Name "Animals $JobName" -ScriptBlock {
Param ($JobNameInput)
# $ErrorActionPreference = 'Stop'
Write-Output -InputObject "Job started for $JobNameInput"
# Simulate some real work
Start-Sleep -Seconds (Get-Random -Minimum 1 -Maximum 10)
Throw 1 / 0
Write-Error -Message "Error message 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-Output -InputObject "Output message for $JobNameInput"
Write-Host -Object "Host message for $JobNameInput"
Write-Information -MessageData "Information message for $JobNameInput"
} -ArgumentList $JobName
# Add the job to the hashtable with the job object as the key and its name as the value
$Jobs[$CurrentJob] = $JobName
}
# Continuously check for job output
while ($Jobs.Count -ne 0) {
# An array of the jobs to remove
[System.Management.Automation.Job2[]]$JobsToRemove = @()
foreach ($Job in $Jobs.Keys) {
# Accessing individual output streams from the job that Receive-Job does not display
# $Job.Warning - not required - Receive-Job shows it
$Job.Debug
$Job.Progress
# $Job.Error - not required - Receive-Job shows it
$Job.Information # Also displays the Write-Host message
# Gets the success, error, warning and host stream from Write-Host
Receive-Job -Job $Job
if ($Job.State -eq 'Completed' -or $Job.State -eq 'Failed') {
# if ($Job.State -eq 'Failed') {
# Write-Output "Job $($Job.Id) failed with reason: $($Job.JobStateInfo.Reason)"
# }
# Remove the job
Remove-Job -Job $Job -Force
# Add the job to the list of jobs to remove
$JobsToRemove += $Job
}
}
# Remove the jobs from the hashtable
foreach ($Job in $JobsToRemove) {
$Jobs.Remove($Job)
}
# Define the interval for checking the jobs
Start-Sleep -Milliseconds 500
}
# Getting all of the jobs to make sure nothing is left
Get-Job
- New-WDACConfig
- New-SupplementalWDACConfig
- Remove-WDACConfig
- Edit-WDACConfig
- Edit-SignedWDACConfig
- Deploy-SignedWDACConfig
- Confirm-WDACConfig
- New-DenyWDACConfig
- Set-CommonWDACConfig
- New-KernelModeWDACConfig
- Get-CommonWDACConfig
- Invoke-WDACSimulation
- Remove-CommonWDACConfig
- Assert-WDACConfigIntegrity
- Build-WDACCertificate
- Test-CiPolicy
- Get-CiFileHashes
- ConvertTo-WDACPolicy
- Get-CIPolicySetting
- 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)
- 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
- 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