From 5690645f0e91c30d888353d7b58432dc0466eca9 Mon Sep 17 00:00:00 2001 From: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com> Date: Thu, 22 Apr 2021 18:38:35 +0300 Subject: [PATCH] Add --no-progress flag to choco install (#3238) --- images/win/scripts/ImageHelpers/ChocoHelpers.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/win/scripts/ImageHelpers/ChocoHelpers.ps1 b/images/win/scripts/ImageHelpers/ChocoHelpers.ps1 index ee1f3912..16956654 100644 --- a/images/win/scripts/ImageHelpers/ChocoHelpers.ps1 +++ b/images/win/scripts/ImageHelpers/ChocoHelpers.ps1 @@ -12,7 +12,7 @@ function Choco-Install { while($true) { Write-Host "Running [#$count]: choco install $packageName -y $argumentList" - choco install $packageName -y @argumentList + choco install $packageName -y @argumentList --no-progress $pkg = choco list --localonly $packageName --exact --all --limitoutput if ($pkg) {