Skip to content

Instantly share code, notes, and snippets.

@alexgelman
Forked from ValeroK/NEO-install-choco-script.bat
Last active August 16, 2017 08:21
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 alexgelman/586dedf11044387f45ce8ff3075aebe6 to your computer and use it in GitHub Desktop.
Save alexgelman/586dedf11044387f45ce8ff3075aebe6 to your computer and use it in GitHub Desktop.
Setup Dev env using chocolaty
:: 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
:::: Text editors / IDEs
choco install dotnetcoresdk -fy
choco install visualstudiocode -fy
choco install visualstudio2017enterprise -fy
:::: Dev tools
choco install github -fy
choco install nodejs.install -fy
:::: Media
:::: Utilities + other
choco install 7zip.install -fy
choco install slack -fy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment