Skip to content

Instantly share code, notes, and snippets.

@dariusz-wozniak
Created January 13, 2019 19:45
Show Gist options
  • Save dariusz-wozniak/5a5f2de8709df66eb160bc4f45d173f8 to your computer and use it in GitHub Desktop.
Save dariusz-wozniak/5a5f2de8709df66eb160bc4f45d173f8 to your computer and use it in GitHub Desktop.
🍫 Chocolatey setup on any machine
Write-Host "### Installing Chocolatey"
if (-Not (Test-Path "$env:chocolateyInstall"))
{
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex
}
Write-Host "### Configuring Chocolatey"
choco upgrade all
choco feature enable -n=allowGlobalConfirmation
choco feature enable -n=allowEmptyChecksums
Write-Host "### Installing apps"
choco install powershell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment