From eaf1c271110c793354faeda44f7f94d0a4c3f294 Mon Sep 17 00:00:00 2001 From: SchooiCodes Date: Mon, 7 Sep 2026 00:38:45 +0300 Subject: [PATCH] Added a SINGULAR line that halves script runtime. `$ProgressPreference = 'SilentlyContinue'` hides the download status bar. For some unknown to me reason, that speeds up the download.. a lot. --- install.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/install.ps1 b/install.ps1 index ca573d6f9b..7bf51aa89e 100644 --- a/install.ps1 +++ b/install.ps1 @@ -1,4 +1,5 @@ $ErrorActionPreference = 'Stop' +$ProgressPreference = 'SilentlyContinue' [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 #region Variables