Skip to content

Commit

Permalink
windows: speed up download of files with PowerShell by hiding status bar
Browse files Browse the repository at this point in the history
  • Loading branch information
georgik committed Oct 15, 2021
1 parent eef0d95 commit 9f18cc3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Install-RustToolchain.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ param (
)

$ErrorActionPreference = "Stop"
# Disable progress bar when downloading - speed up download - https://stackoverflow.com/questions/28682642/powershell-why-is-using-invoke-webrequest-much-slower-than-a-browser-download
$ProgressPreference = 'SilentlyContinue'
$ExportContent = ""
#Set-PSDebug -Trace 1

Expand Down

0 comments on commit 9f18cc3

Please sign in to comment.