-
-
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.
This file contains hidden or 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
# 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')) |
This file contains hidden or 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
# 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