Skip to content

Instantly share code, notes, and snippets.

@azooinmyluggage
Forked from amogram/chocolatey-env-setup.ps1
Last active March 1, 2018 15:04
Show Gist options
  • Save azooinmyluggage/8f2462f5182fd6f633d068a4b28f2be1 to your computer and use it in GitHub Desktop.
Save azooinmyluggage/8f2462f5182fd6f633d068a4b28f2be1 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.
# Simple environment setup script
# Install Applications
choco install fiddler4
choco install sublimetext3
choco install visualstudiocode
choco install GoogleChrome
choco install putty
choco install skype
choco install beyondcompare
# Install Utilities
choco install googledrive
choco install sysinternals
choco install procmon
choco install windirstat
choco install msysgit
choco install gitextensions
choco install 7zip
choco install rdcman
choco install TeraCopy
choco install logparser
choco install procexp
# Install Chocolatey and applications
# Running this runs the above
iex ((new-object net.webClient).DownloadString('https://gist.githubusercontent.com/amogram/8217460/raw/ecdc2b5050af2b4803488c86e1ea07e93164de6b/chocolatey-env-setup.ps1'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment