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.
1 parent b1a1f52 commit bab8777Copy full SHA for bab8777
dnvminstall.ps1
@@ -7,6 +7,8 @@ if (!(Test-Path $tempPath)) { md $tempPath | Out-Null }
7
8
9
$webClient = New-Object System.Net.WebClient
10
+$webClient.Proxy = [System.Net.WebRequest]::DefaultWebProxy
11
+$webClient.Proxy.Credentials = [System.Net.CredentialCache]::DefaultNetworkCredentials
12
Write-Host "Downloading DNVM.ps1 to $dnvmPs1Path"
13
$webClient.DownloadFile('https://raw.githubusercontent.com/aspnet/Home/dev/dnvm.ps1', $dnvmPs1Path)
14
Write-Host "Downloading DNVM.cmd to $dnvmCmdPath"
0 commit comments