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.
我的工作是在内部运行自定义构建的Access / SQL应用程序的orginization。我们遇到问题Explorer.exe抛出错误并崩溃。
This is a picture of the crash: alt text http://img155.imageshack.us/img155/729/45438606.png
这是崩溃的图片:替代文字http://img155.imageshack.us/img155/729/45438606.png
What is the best way to start tracking this problem down and finding a solution ?
开始跟踪此问题并找到解决方案的最佳方法是什么?
2 个解决方案
#1
Make sure WinDBG is installed, set it up as the default debugger then use Analyze and get a crash dump.
确保安装了WinDBG,将其设置为默认调试器,然后使用Analyze并获取崩溃转储。
The next time you get that dialog click "OK" to attach in WinDbg
下次出现该对话框时,单击“确定”以在WinDbg中附加
#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.
请记住,如果您将调试器附加到资源管理器,然后断开,您不应该尝试在调试器中执行任何调用探测器调用的操作,否则您将使调试器死锁。这可能会非常棘手,因为这意味着您无法打开“文件打开”对话框,打印,浏览到另一台计算机以及任何其他内容。
#1
Make sure WinDBG is installed, set it up as the default debugger then use Analyze and get a crash dump.
确保安装了WinDBG,将其设置为默认调试器,然后使用Analyze并获取崩溃转储。
The next time you get that dialog click "OK" to attach in WinDbg
下次出现该对话框时,单击“确定”以在WinDbg中附加
#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.
请记住,如果您将调试器附加到资源管理器,然后断开,您不应该尝试在调试器中执行任何调用探测器调用的操作,否则您将使调试器死锁。这可能会非常棘手,因为这意味着您无法打开“文件打开”对话框,打印,浏览到另一台计算机以及任何其他内容。