Created
February 25, 2015 22:11
-
-
Save mohitt/1a4fa41a30319f2a045e to your computer and use it in GitHub Desktop.
Powershell PSGet Install Proxy
This file contains 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
$c = (new-object Net.WebClient) ; $p = [System.Net.WebRequest]::GetSystemWebProxy(); $p.Credentials = [System.Net.CredentialCache]::DefaultCredentials; $c.proxy = $p ; $c.DownloadString("http://psget.net/GetPsGet.ps1") | iex |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment