Skip to content

Instantly share code, notes, and snippets.

@mohitt
Created February 25, 2015 22:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mohitt/1a4fa41a30319f2a045e to your computer and use it in GitHub Desktop.
Save mohitt/1a4fa41a30319f2a045e to your computer and use it in GitHub Desktop.
Powershell PSGet Install Proxy
$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