visual-studio 如何在 Visual Studio 中查看插件和插件列表?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/1267528/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
How do I see the list of addins and plugins in Visual Studio?
提问by BillRob
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. :)
有人会向我指出显示插件列表的方向吗?我会一一删除它们,直到找到当天“扼杀我的生产力”的那个。:)
采纳答案by eduncan911
Try looking at your packages installed for Visual Studio. They are registered in the registry under:
尝试查看为 Visual Studio 安装的包。它们在以下注册表中注册:
Visual Studio 2008
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio.0Exp\Packages
Visual Studio 2005
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio.0Exp
Packages are the complete installs of all addins, automations, and alike.
软件包是所有插件、自动化等的完整安装。
If you have a lot, I say kill them all. And then reinstall your specific addons (such as CodeSmith or VisualSVN). You may need to clean up the addons that were manually added. But, I think that once you remove the "Package", it disables those addons and automation tools automatically.
如果你有很多,我说把它们都杀了。然后重新安装您的特定插件(例如 CodeSmith 或 VisualSVN)。您可能需要清理手动添加的插件。但是,我认为一旦您删除“包”,它就会自动禁用这些插件和自动化工具。
For reference, this is my fresh new install of Visual Studio 2008 SP1 on Windows 7 RTM. Only 1 plugin, and it's for SQL Server's SSIS:
作为参考,这是我在 Windows 7 RTM 上全新安装的 Visual Studio 2008 SP1。只有 1 个插件,它用于 SQL Server 的 SSIS:
registery http://eduncan911.com/blog/thumbnail/billrob-stackoverflow.png
注册 http://eduncan911.com/blog/thumbnail/billrob-stackoverflow.png
回答by RichieHindle
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)
- 启动画面
- 工具/插件管理器
- 帮助/关于(在“已安装的产品”列表中)
回答by Stanislav Prusac
In Visual Studio 2013, go to the "Tools" menu and open "Extensions and Updates". In "Installed"->"All" section you can see it all.
在 Visual Studio 2013 中,转到“工具”菜单并打开“扩展和更新”。在“已安装”->“全部”部分,您可以看到所有内容。
回答by eduncan911
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.
转到工具菜单并打开插件管理器。或者,您可以转到“我的文档”中的 Visual Studio 文件夹并查看插件文件夹。

