问题描述
我使用Visual Studio已有一段时间了,发现打开Visual Studio并打开项目时,上次打开的所有文件都保持打开状态.
I have been using Visual Studio for a while and found that when I open visual studio and open the project all the files that were open last time remain open.
这会导致我的Visual Studio在启动时冻结或崩溃.
This causes my Visual Studio to freeze or crash on startup.
我在安装中使用了很多插件,想知道是否有防止这种情况发生的方法.
I am using a lot of plugins in my installation and wonder if there is a way to prevent this from happening.
推荐答案
运行:Devenv /ResetSkipPkgs
http://msdn.microsoft.com/en-us/library/ms241276%28VS.80%29.aspx
或
您可能正在寻找/SafeMode
命令行开关:
You are probably looking for the /SafeMode
command line switch:
devenv.exe /SafeMode
这将在禁用所有加载项的情况下启动Visual Studio.
This will start Visual Studio with all add-ins disabled.
这篇关于Visual Studio在启动时冻结或挂起的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!