Skip to content

Instantly share code, notes, and snippets.

@IlyaFinkelshteyn
Created January 25, 2017 18:07
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 IlyaFinkelshteyn/4739607c230970758103079aa8d7e88e to your computer and use it in GitHub Desktop.
Save IlyaFinkelshteyn/4739607c230970758103079aa8d7e88e to your computer and use it in GitHub Desktop.
Write-Host "Downloading Visual Studio Tools for Azure Functions..."
$exePath = "$($env:USERPROFILE)\WebToolsAzure2015.exe"
(New-Object Net.WebClient).DownloadFile('https://download.microsoft.com/download/F/8/A/F8A2905B-25FF-4C82-95D3-14ED11CF252A/WebToolsAzure2015.exe', $exePath)
Write-Host "Installing Visual Studio Tools for Azure Functions..."
cmd /c start /wait "$exePath" /q
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment