Last active
April 13, 2016 15:19
-
-
Save thebentern/b2336d545855ea7e1deb to your computer and use it in GitHub Desktop.
Chocolatey Bar
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
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin | |
::Dev platforms and languages | |
choco install vcredist2010 --confirm | |
choco install nodejs.install --confirm | |
choco install ruby --confirm | |
choco install python2 --confirm | |
choco install redis-64 --confirm | |
choco install docker --confirm | |
::npm goodies | |
npm install -g yo bower grunt-cli gulp | |
::Dev tools | |
choco install cygwin --confirm | |
choco install git --confirm | |
choco install atom --confirm | |
choco install visualstudiocode --confirm | |
choco install curl --confirm | |
choco install cmder --confirm | |
choco install linqpad | |
::Web | |
choco install chrome --confirm | |
choco install firefox-dev -pre --confirm | |
::Utils | |
choco install 7zip.install --confirm | |
choco install gimp --confirm | |
choco install paint.net --confirm | |
choco install teamviewer --confirm | |
choco install notepadplusplus --confirm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment