Skip to content

Instantly share code, notes, and snippets.

@Deca
Forked from zaccb/install-choco-script.bat
Last active June 18, 2019 04:02
Show Gist options
  • Save Deca/a0a92a346509251aae6e614cd47a6029 to your computer and use it in GitHub Desktop.
Save Deca/a0a92a346509251aae6e614cd47a6029 to your computer and use it in GitHub Desktop.
Chocolatey install script
:: Install choco .exe and add choco to PATH
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
:: Install all the packages
:::: Browsers
choco install googlechrome -fy
choco install brave -fy
:::: Text editors / IDEs
choco install sublimetext3 -fy
choco install phpstorm -fy
choco install pycharm-community -fy
:::: Dev tools
choco install git -fy
choco install nodejs.install -fy
choco install cmder -fy
choco install filezilla -fy
choco install python3 -fy
choco install python2 -fy
choco install kitty -fy
choco install jdk8 -fy
:::: Media
choco install vlc -fy
choco install googledrive -fy
choco install obs-studio -fy
choco install spotify -fy
choco install nuclear -fy
:::: Utilities + other
choco install fsviewer -fy
choco install fsresizer.install -fy
choco install foxitreader -fy
choco install winrar -fy
choco install windirstat -fy
choco install teamviewer -fy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment