-
Type: Bug
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: 3.0.6
-
Fix Version/s: 3.1.0
-
Component/s: Packaging / Build
-
Environment:Windows
-
Tags:
-
Sprint:nxDrive 10.2.3
-
Story Points:1
To download installation files on our Windows slaves, we are using:
$curl = New-Object System.Net.WebClient $curl.DownloadFile($url, $output)
But for an obscure reason it is not working anymore.
After some researches, this command will fail too:
Invoke-WebRequest -Uri $url -OutFile $output
And this one is working:
Import-Module BitsTransfer Start-BitsTransfer -Source $url -Destination $output