Skip to content

Instantly share code, notes, and snippets.

@dburriss
Created August 16, 2018 07:43
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 dburriss/4c9f48e7b151acef192daf7303dd4ede to your computer and use it in GitHub Desktop.
Save dburriss/4c9f48e7b151acef192daf7303dd4ede to your computer and use it in GitHub Desktop.
Downloads the Visual Studio 2017 build tools command line installer
$buildToolsUrl = "https://aka.ms/vs/15/release/vs_buildtools.exe"
$installLocation = "C:\TEMP\vs_buildtools.exe"
(New-Object System.Net.WebClient).DownloadFile($buildToolsUrl, $installLocation)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment