PowerShell: suppress Write-Progress output PowerShell: suppress Write-Progress output powershell powershell

PowerShell: suppress Write-Progress output


Try setting this preference variable before calling the cmdlet that utilizes Write-Progress:

$ProgressPreference = 'SilentlyContinue'

You may want to revert back to 'Continue' afterwards.