views:

142

answers:

4

I think I have a plugin or addin to studio installed which has killed all versions of studio.

Where can I see the list of plugins and addins that studio is loading? I believe I have gone through all of the menu to find the list of addins.

Would someone point me in the direction that shows me the list of addins? I will remove them all one by one until I find the one that is "killing my productivity" for the day. :)

+5  A: 

They appear in three difference places, but any given addin/package doesn't necessarily appear in in all those places:

  • The splash screen
  • Tools / Add-in manager
  • Help / About (in the "Installed products" list)
RichieHindle
In the Tools / Add-in manager you can turn on/off any addin
klashar
I know I have addins and plugins installed that didn't appear in these three locations.
BillRob
A: 

Go to the Tools menu and open Add-in manager. Or you can go to the visual studio folder inside of My Documents and look in the addins folder.

Jeremy Reagan
@Jeremy: Add-ins can live anywhere in the file system, not just in that Addins folder. There's a list of paths in the registry (see Gregoire's answer) that tells VS where to look for addins. There are about five different places in there by default, and addins can add their own locations.
RichieHindle
Hmmm, I never really thought of that. Oooops, thank you.
Jeremy Reagan
A: 

HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\\Addins\ I think

Gregoire
@Gregoire: It's HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\9.0\AutomationOptions\LookInFolders (the 9.0 means VS 2008; it's 8.0 for 2005, or 10.0 for 2010).
RichieHindle
+1  A: 
eduncan911