Command line to start visual studio and disable add ins/Extensions for that instance

橙三吉。 提交于 2019-12-05 17:44:05

问题


I am writing a Visual Studio template wizard. And to debug it I have it start a new instance of Visual Studio 2010.

My Visual Studio 2010 takes a good while to start up. I believe that this is due the the add-ins and extensions that I have installed for visual studio.

I would rather not go disable them all (I really like them). So I was hoping there was a way to disable them via the command line.

Just run a clean Visual Studio instance.

Is there a way to do that?


回答1:


Try safemode

devenv.exe /safemode

which

Starts Visual Studio in safe mode, and loads only the default environment and services, and shipped versions of third-party packages.

See http://msdn.microsoft.com/en-us/library/xee0c8y7.aspx



来源:https://stackoverflow.com/questions/10655732/command-line-to-start-visual-studio-and-disable-add-ins-extensions-for-that-inst

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!