Skip to content

Instantly share code, notes, and snippets.

@thatkookooguy
Forked from amogram/chocolatey-env-setup.ps1
Created February 24, 2020 17:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thatkookooguy/58b8d7bca4793fa8c27463ad68923866 to your computer and use it in GitHub Desktop.
Save thatkookooguy/58b8d7bca4793fa8c27463ad68923866 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 notepadplusplus
choco install visualstudiocode
choco install greenshot
choco install GoogleChrome
choco install putty
choco install ccleaner
choco install skype
choco install beyondcompare
choco install resharper-platform
choco install linqpad
choco install spotify
# Install Utilities
choco install dropbox
choco install googledrive
choco install sysinternals
choco install procmon
choco install windirstat
choco install msysgit
choco install gitextensions
choco install tortoisegit
choco install 7zip
choco install vcredist2010
choco install rdcman
choco install TeraCopy
choco install logparser
choco install tor-browser
choco install PowerShellGAC
choco install procexp
choco install cmder
# 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