From 12fbb92d061be2bfb0a0eeb7bc4bb00a3bbd4cf7 Mon Sep 17 00:00:00 2001 From: Jan De Dobbeleer Date: Sat, 30 Nov 2024 11:17:12 +0100 Subject: [PATCH] chore(install): remove quiet param resolves #5962 --- website/static/install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/static/install.ps1 b/website/static/install.ps1 index 7bf73644..c164bb80 100644 --- a/website/static/install.ps1 +++ b/website/static/install.ps1 @@ -75,7 +75,7 @@ Invoke-WebRequest -OutFile $tmp $url Write-Host 'Running installer...' if ($AllUsers) { - & "$tmp" /quiet INSTALLER=script ALLUSERS=1 + & "$tmp" INSTALLER=script ALLUSERS=1 } else { & "$tmp" /quiet INSTALLER=script }