feat(perf): Invoke-WebRequest much slower then browser download (#4294)

This commit is contained in:
William H 2018-11-27 20:57:16 -05:00 коммит произвёл Patrick Lang
Родитель ee2aae1d43
Коммит 7cf913ff2e
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -12,7 +12,8 @@ param(
function DownloadFile([string] $URI, [string] $fullName)
{
try {
Write-Host "Downloading $URI"
Write-Host "Downloading $URI"
$ProgressPreference = 'SilentlyContinue'
Invoke-WebRequest -UseBasicParsing $URI -OutFile $fullName
} catch {
Write-Error $_