-
-
Save angelyordanov/35569c140a8a947647281306eabf2418 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 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 | |
# First instal chocolatey | |
# https://chocolatey.org/install | |
choco feature enable -n allowGlobalConfirmation | |
# Install Applications | |
choco install git | |
choco install notepadplusplus | |
choco install GoogleChrome | |
# Regsy specific | |
choco install sql-server-2019 | |
choco install linqpad | |
choco install made2010 # Microsoft Access Database Engine 2010 Redistributable | |
# 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 |
This file contains 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 | |
# 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