Skip to content

Instantly share code, notes, and snippets.

@karol-pawlowski
Forked from amogram/chocolatey-env-setup.ps1
Last active July 23, 2020 08:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save karol-pawlowski/4f5455e9fbfb3c8af145b60c084c8ebe to your computer and use it in GitHub Desktop.
Save karol-pawlowski/4f5455e9fbfb3c8af145b60c084c8ebe to your computer and use it in GitHub Desktop.
A Chocolatey script for PowerShell I use to set up my Windows development environment. I use this when setting up my own Dev VMs. Use at your own risk.See http://bit.ly/1a301JK and http://chocolatey.org/ for more information.
# Install Chocolatey and applications
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
# Disable confirmations
choco feature enable -n allowGlobalConfirmation
# Running this runs the above
iex ((new-object net.webClient).DownloadString('https://gist.githubusercontent.com/karol1990/4f5455e9fbfb3c8af145b60c084c8ebe/raw/62dfd04b592177a7bfdfee9d787a0ef41882266d/chocolatey-env-setup.ps1'))
# Simple environment setup script
# Install Applications
choco upgrade fiddler
choco install terraform
choco upgrade azure-cli
choco upgrade kubernetes-helm
choco install kubernetes-cli
choco upgrade keep-chrome
choco upgrade visualstudiocode
choco upgrade GoogleChrome
choco upgrade putty
choco install postman
choco install cmder
choco upgrade windbg
# Install Utilities
choco upgrade sysinternals
choco upgrade procmon
choco install poshgit
choco upgrade git.install
choco upgrade github-desktop
choco upgrade 7zip
choco upgrade procexp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment