We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c560ede + 089912c commit 3d5deb1Copy full SHA for 3d5deb1
eng/scripts/InstallVisualStudio.ps1
@@ -49,7 +49,7 @@ mkdir $intermedateDir -ErrorAction Ignore | Out-Null
49
50
$bootstrapper = "$intermedateDir\vsinstaller.exe"
51
$ProgressPreference = 'SilentlyContinue' # Workaround PowerShell/PowerShell#2138
52
-Get-RemoteFile "https://aka.ms/vs/15/release/vs_$($Edition.ToLowerInvariant()).exe" -OutFile $bootstrapper
+Invoke-WebRequest -Uri "https://aka.ms/vs/15/release/vs_$($Edition.ToLowerInvariant()).exe" -OutFile $bootstrapper
53
54
if (-not $InstallPath) {
55
$InstallPath = "${env:ProgramFiles(x86)}\Microsoft Visual Studio\2017\$Edition"
0 commit comments