Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove ApexSQL menus from Visual Studio?

I installed the free version of ApexSQL which is awesome in SSMS, but I really don't want all those menus in Visual Studio. I went to add-in manager and unchecked them, but the Startup column is checked and disabled so every time I restart Visual Studio they come back.

Is it possible to permanently remove the ApexSQL menus from Visual Studio?

like image 628
Chris Bayles Avatar asked Apr 10 '13 15:04

Chris Bayles


People also ask

How do I uninstall ApexSQL?

After deleting the ApexSQL Search folder from Program Files, go to this location: C:\Users\<User_Name>\AppData\Local\ApexSQL and if exist delete ApexSQL Search folder: Note: To access the AppData folder, you'll have to enable the “Show hidden files, folders, and drives” option.

What is ApexSQL complete?

ApexSQL Complete is a tool used to auto-complete keywords, statements, and identifiers that results in better productivity and faster coding. It can easily be integrated into SQL Server Management Studio and Visual Studio.


1 Answers

If you have ApexSql installed and you don't want those pesky menus in Visual Studio do 2 things.

  1. In Visual Studio, go to Tools > Add-in Manager and uncheck the ApexSql addins. Close Visual Studio.
  2. In Windows 7, there's a hidden folder C:\ProgramData. In Windows Explorer go to C:\ProgramData\Microsoft\MSEnvShared\AddIns folder. Edit each of the *.MsvsLoader.Addin files and set <LoadBehavior> to 0. If you can't save the files directly, you'll have to save the files to a different location (desktop maybe) and then copy them back into C:\ProgramData\Microsoft\MSEnvShared\AddIns because there's some Admin privilege required.

Now when you restart VS those ApexSQL menus should be gone

like image 189
Chris Bayles Avatar answered Sep 28 '22 04:09

Chris Bayles