Last active
August 16, 2017 08:39
-
-
Save ValeroK/e63896262fa83f5ea3faaf579fb4984d to your computer and use it in GitHub Desktop.
Setup Dev env using chocolaty
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
:: 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 visualstudiocode -fy | |
:: also need to install the C# Extensions and .Net Core SDK https://www.microsoft.com/net/core#windowscmd | |
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 | |
choco install notepad++ -fy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment