Skip to content

Instantly share code, notes, and snippets.

@ShawInnes
Last active December 27, 2016 23:37
Show Gist options
  • Save ShawInnes/186e5cf0e358dda77f19eb4c9a4b23e3 to your computer and use it in GitHub Desktop.
Save ShawInnes/186e5cf0e358dda77f19eb4c9a4b23e3 to your computer and use it in GitHub Desktop.
Set up new Server 2016 Dev PC
## 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