Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 731 Bytes

speed-up-powershell-invoke-webrequest.md

File metadata and controls

31 lines (26 loc) · 731 Bytes
aliases category classification date date_modified draft id image links local_archive_links pinned print series tags title type
speed-up-powershell-invoke-webrequest
powershell
public
2020-08-14 08:18:44 -0700
2020-08-14 08:18:44 -0700
false
20200814151844
false
false
windows
powershell
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.