Forked from FeodorFitsner/install-vsix-appveyor.ps1
Last active
April 4, 2018 15:01
-
-
Save iamsingularity/11df6ed557cfb25fd3a2ac25de0a0a7d to your computer and use it in GitHub Desktop.
Installing a VSIX extension from command line
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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