Visual Studio 已停止工作 - 在 Win 7 上
我有 Win 7 企业版。如果我在 VS 2008/2010 上打开任何 .cs 文件,它会在对话框中显示一条消息“Visual Studio 已停止工作”。有两个按钮“调试”和“关闭程序”。调试按钮使用汇编代码在调试模式下启动 devenv,因为我没有相同的 pdb 文件。
还有另一台具有相同配置的机器,其中 VS 2008/2010 Ultimate 运行良好。即使重装Win 7也没有解决问题。知道为什么会这样吗?
I have Win 7 Enterprise. If i open any .cs file on VS 2008/2010 it gives a message " Visual Studio has stopped working" on a dialog box. There are two buttons "Debug" and "close program". Debug button starts devenv in debug mode with assembly code as i do not have the pdb file for the same.
There is another machine with same configuration where the VS 2008/2010 Ultimate works fine. Even reinstalling Win 7 did not solve the problem. Any idea why it is happening?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
尝试使用一些标准 VS 故障排除步骤:
devenv.exe /SafeMode
Try with some standard VS troubleshooting steps:
devenv.exe /SafeMode
最近也遇到了同样的问题,网上也没有太多帮助。所以我认为这可能是一个简单的解决方案。我重新安装了 Visual Studio 几次但没有成功。最后,我卸载 .NET Framework 和 Visual Studio,重新启动并重新安装。
效果很好!
我认为这可能对某人有帮助。
Recently I had the same problem, there is not much help on the Internet. So I thought this could be an easy fix. I re-install Visual Studio Several times but no luck. Finally, I uninstall .NET Framework along with Visual Studio, re-boot and re-install.
It worked fine !!
I thought it might help someone.
VS 2012 停止工作
我收到此错误...
但是,如上所述,这对我有用:
在禁用所有加载项的情况下启动 Visual Studio:
重置所有设置:
工具 ->导入/导出设置->重置所有设置
VS 2012 Stopped Working
I was getting this error...
However, as mentioned above this worked for me:
Launch Visual Studio with all add-ins disabled:
Reset All Settings:
Tools -> Import / Export Settings -> Reset All Settings
嘿,我前段时间也遇到过同样的问题,但当我安装此补丁修复后就解决了。
在这里查看 -
http://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails。 aspx?DownloadID=26662。
Hey i had the same problem some time back but was solved when i installed this patch fix.
Check it out here -
http://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=26662.
对我来说......我之前安装的扩展之一是罪魁祸首。该扩展是某种代码反射器。当我前进时,该工具设法减慢我的调试速度。并使Visual Studio 2012不断崩溃。所以我的建议是要小心你安装的工具和扩展......尤其是那些不是由微软自己创建的。
For me ... one of extension I installed earlier is the culprit. That extension is some sort of code reflector. That tool manage to slow down my debugging when i step forward. And make visual studio 2012 constantly crashing. So my advice is be careful what tools and extensions you install... especially those that are not created by Microsoft themselves.
就我而言,崩溃是由并行项目构建引起的。转到
Options -> 后项目和解决方案 ->构建并运行
并将并行项目构建的最大数量
设置为1,崩溃消失了。In my case the crash was caused by the parallel project builds. After went to
Options -> Projects and Solutions -> Build and Run
and setmaximum number of parallel project builds
to 1, the crash was gone.这在我的场景中多次起作用。
This worked multiple times in my scenario.