Skip to content

Commit 25e82ae

Browse files
committed
Speed up PowerShell downloads :)
1 parent 33355f4 commit 25e82ae

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

install.ps1

+2
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,8 @@ if (Test-Path -Path "$TEMP_FILE") {
273273
}
274274

275275
# Download the file
276+
# Suppress output per: https://stackoverflow.com/q/28682642/3196753, https://stackoverflow.com/q/75168064/3196753
277+
$ProgressPreference = 'SilentlyContinue'
276278
Invoke-WebRequest "$DOWNLOAD_URL" -OutFile "$TEMP_FILE"
277279

278280
# Install using unattended techniques: https://github.com/qzind/tray/wiki/deployment

0 commit comments

Comments
 (0)