Last active
November 9, 2016 21:26
-
-
Save rezen/92622b2009f5e904ed2a to your computer and use it in GitHub Desktop.
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
:: Make sure to download and install dotnet45+ before running the script! | |
:: Install Chocolatey! | |
:: @todo Add http://babun.github.io/ | |
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin | |
:: Browsers | |
choco install -y firefox | |
choco install -y googlechrome | |
choco install -y ie11 | |
:: Utils and common apps | |
choco install -y 7zip.install | |
choco install -y autohotkey.portable | |
choco install -y cutepdf | |
choco install -y greenshot | |
choco install -y f.lux | |
choco install -y k-litecodecpackfull | |
choco install -y skype | |
choco install -y pidgin | |
choco install -y imgburn | |
choco install -y launchy | |
choco install -y vlc | |
choco install -y malwarebytes | |
choco install -y gpg4win | |
:: Design tools | |
choco install -y pencil | |
choco install -y staruml2 | |
:: Development tools | |
choco install -y openssl.light | |
choco install -y winmerge | |
choco install -y sqlitebrowser | |
:: Install languages | |
choco install -y nodejs.install | |
choco install -y php | |
choco install -y golang | |
choco install -y python | |
choco install -y ruby | |
choco install -y phantomjs | |
:: VM Setup | |
choco install -y virtualbox | |
choco install -y vagrant | |
:: Network tools | |
choco install -y fiddler | |
choco install -y nmap | |
choco install -y wireshark | |
:: Tabbed console | |
choco install -y conemu | |
:: Below items don't have chocolately installer, they download into a installers directory | |
if not exist ".\installers" mkdir installers | |
:: Robomongo is a nice gui for mongodb | |
@powershell -NoProfile -ExecutionPolicy Bypass -Command "(new-object System.Net.WebClient).Downloadfile('http://download.robomongo.org/0.9.0-rc4/windows/robomongo-0.9.0-rc4-windows-x86_64-8c830b6.exe', '.\installers\robomongo-0.9.0.exe')" | |
:: Composer for PHP package management | |
@powershell -NoProfile -ExecutionPolicy Bypass -Command "(new-object System.Net.WebClient).Downloadfile('https://getcomposer.org/Composer-Setup.exe', '.\installers\Composer-Setup.exe')" | |
:: Open installers direcotry | |
explorer.exe installers |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment