Skip to content

Instantly share code, notes, and snippets.

@nicholasdille
Last active December 30, 2021 20:38
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nicholasdille/13b21c1c91e8c4e756ef to your computer and use it in GitHub Desktop.
Save nicholasdille/13b21c1c91e8c4e756ef to your computer and use it in GitHub Desktop.
Retrieve progress from PowerShell job and display progress bar
function Show-JobProgress {
[CmdletBinding()]
param(
[Parameter(Mandatory,ValueFromPipeline)]
[ValidateNotNullOrEmpty()]
[System.Management.Automation.Job[]]
$Job
,
[Parameter()]
[ValidateNotNullOrEmpty()]
[scriptblock]
$FilterScript
)
Process {
$Job.ChildJobs | ForEach-Object {
if (-not $_.Progress) {
return
}
$LastProgress = $_.Progress
if ($FilterScript) {
$LastProgress = $LastProgress | Where-Object -FilterScript $FilterScript
}
$LastProgress | Group-Object -Property Activity,StatusDescription | ForEach-Object {
$_.Group | Select-Object -Last 1
} | ForEach-Object {
$ProgressParams = @{}
if ($_.Activity -and $_.Activity -ne $null) { $ProgressParams.Add('Activity', $_.Activity) }
if ($_.StatusDescription -and $_.StatusDescription -ne $null) { $ProgressParams.Add('Status', $_.StatusDescription) }
if ($_.CurrentOperation -and $_.CurrentOperation -ne $null) { $ProgressParams.Add('CurrentOperation', $_.CurrentOperation) }
if ($_.ActivityId -and $_.ActivityId -gt -1) { $ProgressParams.Add('Id', $_.ActivityId) }
if ($_.ParentActivityId -and $_.ParentActivityId -gt -1) { $ProgressParams.Add('ParentId', $_.ParentActivityId) }
if ($_.PercentComplete -and $_.PercentComplete -gt -1) { $ProgressParams.Add('PercentComplete', $_.PercentComplete) }
if ($_.SecondsRemaining -and $_.SecondsRemaining -gt -1) { $ProgressParams.Add('SecondsRemaining', $_.SecondsRemaining) }
Write-Progress @ProgressParams
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment