Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Uninstalling the VS2010 extension without the Extension Manager

Is there any way to uninstall the VS2010 extension correctly without the Extension Manager? I couldn't find any special command line arguments for .vsix file and think that just deleting all the files from Visual Studio's special place is not a right solution.

like image 881
Kirill Skrygan Avatar asked Oct 06 '09 16:10

Kirill Skrygan


People also ask

Where are VSIX files stored?

Installation location During installation, Extensions and Updates looks for the contents of the VSIX package in a folder under %LocalAppData%\Microsoft\VisualStudio\14.0\Extensions. By default, the installation applies only to the current user, because %LocalAppData% is a user-specific directory.

Where Visual Studio extensions are installed?

Most extensions are per-user and are installed in the %LocalAppData%\Microsoft\VisualStudio\<Visual Studio version>\Extensions\ folder.

How do I install a VSIX file?

Open in VisualStudio the folder that contain the "nameFile. vsix" file. File, Open Folder..., click right in the "nameFile. vsix" into de VisualStudio, and click in install extension VSIX.


1 Answers

Yes, actually deleting the folder is exactly what you should do. A "pure" VSIX extension is just a unzip of the files to a folder under %LocalAppData%\Microsoft\VisualStudio\10.0\Extensions.

It's a good idea to check though that it wasn't installed through MSI or some other installer technology by verifying in Windows Add/Remove Programs.

like image 96
Aaron Marten Avatar answered Oct 24 '22 17:10

Aaron Marten