@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
Created
April 1, 2015 21:25
-
-
Save Im0rtality/c5ced3102cfc0e7245cc to your computer and use it in GitHub Desktop.
Chocolatey provisioning
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
# common dependencies | |
choco install dotnet4.5 | |
choco install javaruntime | |
# entertainment | |
choco install skype | |
choco install googlechrome | |
choco install vlc | |
# utils | |
choco install ccleaner | |
choco install dropbox | |
choco install notepadplusplus | |
choco install 7zip | |
choco install adobereader | |
choco install defraggler | |
choco install daemontoolslite | |
# development | |
choco install msysgit | |
choco install cygwin | |
choco install vagrant | |
choco install cyg-get | |
choco install virtualbox | |
choco install phpstorm | |
choco install mysql.workbench | |
# diagnostics | |
choco install procexp | |
choco install teamviewer | |
# productivity | |
choco install totalcommander | |
choco install wunderlist | |
choco install f.lux | |
# gaming | |
choco install directx | |
choco install steam | |
choco install battle.net |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment