Skip to content

Instantly share code, notes, and snippets.

@yetanotherchris
Created October 27, 2017 21:17
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 yetanotherchris/10f9458b44a711aa6d1eb2eb48c405d7 to your computer and use it in GitHub Desktop.
Save yetanotherchris/10f9458b44a711aa6d1eb2eb48c405d7 to your computer and use it in GitHub Desktop.
Install Docker and Visual Studio 2017
Set-ExecutionPolicy RemoteSigned -Confirm:$false -Force
iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))
# Stop prompting in Chocolately
choco feature enable -n allowGlobalConfirmation
choco install visualstudio2017community; choco install visualstudio2017-workload-netcoretools; choco install visualstudio2017-workload-netweb; choco install docker-for-windows;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment