Skip to content

Instantly share code, notes, and snippets.

@nawaljahmed
Forked from zaccb/install-choco-script.bat
Created September 9, 2019 02:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nawaljahmed/c2d2eb46ec4a7db801471a42e04f8428 to your computer and use it in GitHub Desktop.
Save nawaljahmed/c2d2eb46ec4a7db801471a42e04f8428 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 firefox -fy
:::: Text editors / IDEs
choco install atom -fy
choco install sublimetext3 -fy
choco install visualstudiocode -fy
choco install visualstudio2015community -fy
:::: Dev tools
choco install git -fy
choco install nodejs.install -fy
:::: Media
choco install vlc -fy
:::: Utilities + other
choco install 7zip.install -fy
choco install dropbox -fy
choco install slack -fy
choco install office365proplus -fy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment