vote up 2 vote down star

We have an error that we can't seem to find and don't have the need/resources to try and track it down. What we do need to do is just keep the freaking "Please tell Microsoft about this problem" dialog boxes from cluttering up the server.

It is from an MS-Access error (we think) but I can't find where Access is installed (I don't think it is); there is no MS Office directory on any of the drives.

If we could just stop the dialog boxes from appearing that would be great.

Thanks.

Spec: Window Server 2003 sp2

flag

The base access engine is included with Windows. – Joel Coehoorn Sep 10 '08 at 18:40
Thanks Joel! It's good to know I'm not crazy...or at least for THAT reason. ;o) – Keng Sep 10 '08 at 18:48

7 Answers

vote up 8 vote down check

From http://www.codeproject.com/KB/exception/UnhandledExceptionClass.aspx:

If you also want to disable the Windows “Send Error Report” dialog on your computer, right-click on the “My Computer” icon, select “Properties”, switch to the “Advanced” tab, and click on the “Error Reporting” button. In the Options dialog, select the “Disable error reporting” radio button:

Compare also http://www.codeproject.com/KB/exception/ExceptionHandling.aspx for general .NET Exception Handling sanity.

link|flag
They don't want to run that on their customer's machines, because that will disable any application from using the dialog. They just want to prevent their application from sending it. – Joel Coehoorn Sep 10 '08 at 18:45
vote up 5 vote down

Well, I would try and figure out what application is using Access. Not knowing what is running is a real issue, especially when it is having unhandled exceptions!

As far as just disabling? Try:

Right click 'My Computer'

left click 'Properties'

left click 'Advanced' tab

left click 'Error Reporting' (near bottom)

left click 'Disable error reporting'

link|flag
vote up 1 vote down

It's called the Windows Error Reporting Dialog. You can disable it by following these instructions:

http://www.windowsnetworking.com/articles_tutorials/Disable-Error-Reporting-Windows-XP-Server-2003.html

However, I would be concerned with why you are getting those error messages. You are just concealing a problem which could be very bad.

link|flag
vote up 2 vote down

Since I see three different people posted instructions on how to disable the dialog on their own machine, I'll post this again as an answer instead of just a comment:

They don't want to do that on their customer's machines, because that will disable any application from using the dialog. They just want to prevent it from coming up for their application.

link|flag
Very good point and thanks for the comment/answer transition. The server is ours and it is limited to our apps. The fact that something is crashing somewhere outside of our core apps bothers us but it's too expensive to try to track down to find out it's some bizarre minesweeper function. 80) – Keng Sep 10 '08 at 18:53
@Joel: I really don't understand where you got any of your assumptions from here. I don't read any of that in his question. – Rich B Sep 11 '08 at 19:00
vote up 6 vote down

I don't think you realize jusy how serious this error might be. These errors pop up under severe conditions like buffer overflows, null pointer dereferences, division by zero errors, etc. Given that you mentioned that this runs on a server, you potentially (depending on your situation) have a network facing, easily exploitable program!

As others have suggested, you can turn off error-reporting system wide, or you can use the SetErrorMode API to disable it for just your application, but again I would strongly advise to investigate and fix the problem at its root!

link|flag
vote up 0 vote down

I have a question for the original poster:

What, exactly, leads you to think that MS Access is causing the issue?

link|flag
the dialog box actually says, "MS Access" crashed do you want to send info to MS? – Keng Sep 18 '08 at 12:01
Have you searched for MSACCESS.EXE on the PC where this is happening? Perhaps some application is using the Access runtime behind the scenes. – David W. Fenton Sep 22 '08 at 0:53
vote up 1 vote down

It's not concealing anything, if a program crashes windows will still tell you. The difference is that it won't compile a core dump and try to send it to microsoft for you. It's very useful to disable this garbage.

link|flag

Your Answer

Get an OpenID
or

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