Checklist
Is Your Feature Request Related To A Problem? Please describe.
Yes. Verbose output is a mess when logging installation progress.

Describe The Solution. Why is it needed?
Set $ProgressPreferences to 'SilentlyContinue' in InstallPackage before running 'choco install'
Example:
I also corrected a typo in $packageInstallOutput.
$cmd = "choco install $pName $chocoParams"
Write-Verbose -Message "Install command: '$cmd'"
$currentProgressPreference = $ProgressPreference
$ProgressPreference = 'SilentlyContinue'
$packageInstallOutput = Invoke-Expression -Command $cmd
$ProgressPreference = $currentProgressPreference
Write-Verbose -Message "Package output $packageInstallOutput"
Additional Context
No response
Related Issues
No response
Checklist
Is Your Feature Request Related To A Problem? Please describe.
Yes. Verbose output is a mess when logging installation progress.
Describe The Solution. Why is it needed?
Set $ProgressPreferences to 'SilentlyContinue' in InstallPackage before running 'choco install'
Example:
I also corrected a typo in $packageInstallOutput.
Additional Context
No response
Related Issues
No response