switch to BITS for file download

This commit is contained in:
2023-11-01 15:47:27 -04:00
parent 81a48222ad
commit 7a89f0b85e
+2 -1
View File
@@ -189,7 +189,8 @@ Function Download-File {
$URI = Get-AbsoluteURI -URL $URL
If ( $null -eq $URI ) { Return }
If ( [string]::IsNullOrEmpty($File) ) { $File = '{0}{1}' -f (Get-TempPath), (Split-Path $URI -Leaf) }
Try { (New-Object System.Net.WebClient).DownloadFile($URI,$File) }
#Try { (New-Object System.Net.WebClient).DownloadFile($URI,$File) }
Try { Start-BitsTransfer -Source $URI -Destination $File }
Catch { Write-Error $_.Exception.Message ; Return }
Return $File
}