Last active
June 16, 2017 21:43
-
-
Save thombergs/a6e829f978ee6dda9ffe91a89eb4b1c5 to your computer and use it in GitHub Desktop.
Shell script to install some default tools via chocolatey
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
| REM run this script with administrator privileges | |
| REM install chocolatey itself | |
| @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" | |
| REM install packages | |
| choco install -y googlechrome | |
| choco install -y foxitreader | |
| choco install -y sublimetext3 | |
| choco install -y procexp | |
| choco install -y 7zip | |
| choco install -y jdk8 | |
| choco install -y git | |
| choco install -y intellijidea-ultimate | |
| choco install -y nodejs-lts | |
| choco install -y vlc | |
| choco install -y winscp | |
| choco install -y xmind | |
| choco install -y libreoffice | |
| choco install -y paint.net | |
| choco install -y spotify | |
| choco install -y steam | |
| REM these packages require input from a human | |
| choco install -y ruby |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment