aliases | category | classification | date | date_modified | draft | id | image | links | local_archive_links | pinned | series | tags | title | type | ||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
powershell |
public |
2020-08-14 08:18:44 -0700 |
2020-08-14 08:18:44 -0700 |
false |
20200814151844 |
false |
false |
|
Speed Up PowerShell Invoke-WebRequest |
tech-note |
If you don't disable the progress bar when downloading a file using Invoke-WebRequest
on Windows PowerShell, it will take significantly longer to download.
To disable it run the below:
$ProgressPreference = 'SilentlyContinue'
Invoke-WebRequest <params>
The $ProgressPreference
variable will only last as long as the current PowerShell session.