Last active
August 29, 2015 14:22
-
-
Save CJKinni/53eca910e44b4100924d to your computer and use it in GitHub Desktop.
PowerShell Setup Script
This file contains hidden or 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
# 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