vote up 2 vote down star

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: alt text

What is the best way to start tracking this problem down and finding a solution ?

flag

1  
Wait... How does your program have anything to do with Explorer? Are you writing an add-in for it? Manipulating it at run time? Hosting viruses or virus scanners? I'm confused... – Shog9 Jun 1 at 20:38
We are not sure how or why the program is crashing explore.exe We check for API calls but we only due one or two during the initial start up of the application. We are definitely not hosting viruses or scanners :-) – JJ Jun 1 at 22:30

2 Answers

vote up 4 vote down check

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

link|flag
.symfix ; .reload ; kn100 # (Comment box eats newlines) – Paul Betts Jun 1 at 20:40
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.