Last active
December 27, 2016 23:37
-
-
Save ShawInnes/186e5cf0e358dda77f19eb4c9a4b23e3 to your computer and use it in GitHub Desktop.
Set up new Server 2016 Dev PC
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
| ## using Choco | |
| @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" | |
| choco feature enable -n=allowGlobalConfirmation | |
| # On Win10 and Server2016 you don't need to install chocolatey | |
| Install-PackageProvider chocolatey -ForceBootstrap -Force | |
| # Dev Tools | |
| Install-Package vcredist2012 -Force | |
| Install-Package vcredist2015 -Force | |
| Install-Package resharper-platform -Force | |
| Install-Package git.install -Force | |
| Install-Package linqpad -Force | |
| Install-Package atom -Force | |
| Install-Package wget -Force | |
| # Browsers | |
| Install-Package googlechrome -Force |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment