I just installed an extension to my Visual Studio 2013 app. I decided I don't want that extension so I went to Tools->Extensions and Updates and scrolled down to the extension I want to install.
The problem is, the uninstall button doesn't do anything when I click it (and the Disable button is not even active).
I then tried running Visual Studio as Administrator but that didn't work either.
I searched the web for suggestions and I found one page that said to use the VSIXInstaller.exe utility found in Visual Studio's install directory. To uninstall and extension you have to run it with the following command line:
VSIXInstaller /q /a /u:{VSIXIdentifier}
My question is, how do I get the identifier? Is it the same as the extension version?
Also, let's say hypothetically that using VSIXInstaller does not work. Is there a way to manually uninstall an extension?
P.S. As I am posting this Stack Overflow is telling me there might be a duplicate question. I read the other question and it's not quite the same. The solution given on that answer is to run VS as Administrator which I have already tried.