function Test-WriteProgressHelperChild { $activityLabel = "Test-WriteProgressHelperChild" for ($i = 0; $i -lt 4; $i++) { Write-ProgressHelper -Activity $activityLabel -Status "Sleeping 1s" -PercentComplete ($i * 25) Start-Sleep -Seconds 1 } Write-Progress -Activity $activityLabel -Completed }