Skip to content

Instantly share code, notes, and snippets.

@remlapmot
Last active March 30, 2020 16:17
Show Gist options
  • Save remlapmot/1a751dd35c34cac0127574c4714a9ab6 to your computer and use it in GitHub Desktop.
Save remlapmot/1a751dd35c34cac0127574c4714a9ab6 to your computer and use it in GitHub Desktop.
Powershell script to install chocolatey
Set-ExecutionPolicy Bypass -Scope Process -Force; [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
@remlapmot
Copy link
Author

  • Slight modification of the official command given here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment