Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@CJKinni
Last active August 29, 2015 14:22
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 CJKinni/53eca910e44b4100924d to your computer and use it in GitHub Desktop.
Save CJKinni/53eca910e44b4100924d to your computer and use it in GitHub Desktop.
PowerShell Setup Script
# Basic PC Setup - Choco Version
set-executionpolicy unrestricted -s CurrentUser
Y
iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))
choco install powershell -y
choco install sublimetext3 -y
choco install notepadplusplus.install -y
choco install vim -y
choco install adobereader -y
choco install 7zip -y
choco install autohotkey.portable -y
choco install skype -y
choco install putty -y
choco install dropbox -y
choco install mysql.workbench -y
choco install winmerge -y
choco install procexp -y
choco install googlechrome -y
choco install firefox -y
choco install git.install -y
choco install javaruntime -y
choco install python -y
choco install pip -y
choco install ruby -y
choco install rubygems -y
choco install vcredist2010 -y
choco install wget -y
choco install curl -y
choco install visualstudiocommunity2013 -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment