Skip to content

Instantly share code, notes, and snippets.

@sai-inampudi
Forked from karol-pawlowski/choco-installer.ps1
Last active March 4, 2019 17:52
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 sai-inampudi/592070610a4a21a4785b2f2a93d5de3f to your computer and use it in GitHub Desktop.
Save sai-inampudi/592070610a4a21a4785b2f2a93d5de3f 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/sai-inampudi/592070610a4a21a4785b2f2a93d5de3f/raw/229dbf0aeff4bd597906d97069a9a7034c92e6b7/chocolatey-setup.ps1'))
# Simple environment setup script
choco install launchy
choco install 7zip
choco install jdk8
choco install jre8
choco install maven --version 3.6.0
choco install tomcat
choco install nodejs.install
choco install git
choco install python3
choco install ruby
choco install svn
choco install tortoisesvn
choco install curl
choco install wget
choco install fiddler
choco install notepadplusplus
choco install GoogleChrome
choco install putty
choco install autohotkey
#winscp vs filezilla
choco install winscp
choco install postman
choco install beyondcompare
choco install cmder
choco install microsoft-teams
choco install intellijidea-community
choco install spotify
choco install eclipse
choco install vlc
#hyper vs conemu vs none
choco install hyper --pre
choco install rdcman
choco install logparser
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment