Last active
September 26, 2016 16:42
-
-
Save filipepgoes/03d82b7909283cb6cf15333487d3a9d1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
netsh winhttp import proxy source=ie | |
# Current WinHTTP proxy settings: | |
# Proxy Server(s) : 192.168.1.1:80 | |
# Bypass List : (none) | |
$webclient=New-Object System.Net.WebClient | |
$creds=Get-Credential | |
$webclient.Proxy.Credentials=$creds | |
# Add-AzureAccount .... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment