调试崩溃的 explorer.exe 的最佳方法是什么?
I work for an orginization that has a custom built Access/SQL Application running in house. We have a problem Explorer.exe throwing an error and crashing.
This is a picture of the crash:
What is the best way to start tracking this problem down and finding a solution ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请记住,如果将调试器附加到资源管理器,然后中断,则不应尝试在调试器中执行任何调用资源管理器的操作,否则将使调试器死锁。 这可能非常棘手,因为这意味着您无法打开“文件打开”对话框、打印、浏览到另一台计算机以及任何其他操作。
Keep in mind that if you attach a debugger to explorer, then break, that you should not try to do anything in the debugger that invokes a call to explorer or you will deadlock the debugger. This can be surprisingly tricky as it means you cannot open a "File Open" dialog, print, browse to another computer and any number of other things.
确保安装了 WinDBG,将其设置为默认调试器,然后使用分析并获取故障转储。
下次出现该对话框时,单击“确定”以附加到 WinDbg 中
Make sure WinDBG is installed, set it up as the default debugger then use Analyze and get a crash dump.
The next time you get that dialog click "OK" to attach in WinDbg