Skip to content

Instantly share code, notes, and snippets.

@FeodorFitsner
Created June 27, 2015 19:57
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save FeodorFitsner/61d515f6ff48f8b3569f to your computer and use it in GitHub Desktop.
Save FeodorFitsner/61d515f6ff48f8b3569f to your computer and use it in GitHub Desktop.
Installing VSIX extension from command line
$vsixPath = "$($env:USERPROFILE)\sqlite-wp81-winrt-3081002.vsix"
(New-Object Net.WebClient).DownloadFile('https://visualstudiogallery.msdn.microsoft.com/5d97faf6-39e3-4048-a0bc-adde2af75d1b/file/132406/15/sqlite-wp81-winrt-3081002.vsix', $vsixPath)
"`"C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\VSIXInstaller.exe`" /q /a $vsixPath" | out-file ".\install-vsix.cmd" -Encoding ASCII
& .\install-vsix.cmd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment