Closed
Description
The following code, when executed using the debugger, will show the Write-Host output, but not the Write-Progress output.
for ($i = 1; $i -le 10; $i++ ) {write-progress -activity "Search in Progress" -status "$i% Complete:" -percentcomplete $i; Write-Host "Seconds Passed: " $i; Start-Sleep 1}