0

How can I disable Windows Error box from popping up?

We have machines that get the pop up box saying something went wrong,

I don't want to turn off Windows Error Service tho, just want to disable Error pop up on specific apps.

3
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking.
    – Community Bot
    Commented Mar 31, 2023 at 19:07
  • You may use a product such as AutoHotKey to wait for the error dialog and press the OK button. Let me know if this is a solution. (Add to your comment @harrymc for me to be notified.)
    – harrymc
    Commented Apr 1, 2023 at 15:33
  • @harrymc this is what I'm looking into! Thanks buddy
    – Onluck
    Commented Apr 4, 2023 at 0:49

1 Answer 1

0

I don't want to turn off Windows Error Service tho, just want to disable Error pop up on specific apps.

To the best of my knowledge and a lot of use, if the Error Service is ON and you get an error, you cannot disable the pop up and certainly not by App.

Best (1) to correct the error (after the work is over) to eliminate the pop up and (2) live with the pop up until corrected.

6
  • the problem is, this is a render farm and sometimes in the middle of a job they would run into issues caused by many different factors, So I can't eliminate the error from happening, but then the App would generate a generic pop up error, I want to disable that however I need windows error for troubleshooting other stuff.
    – Onluck
    Commented Mar 31, 2023 at 19:35
  • I understand, but if services are running normally, the the Error will pop up. Try troubleshooting a prior error to correct the problem
    – anon
    Commented Mar 31, 2023 at 19:38
  • Or have the app trap the error, and log it, either to an internal log or to the Windows Error Log. Each language has a method to handle exceptions gracefully. For example, C#: tutorialspoint.com/csharp/csharp_exception_handling.htm, C+: learn.microsoft.com/en-us/cpp/cpp/…, Java: javatpoint.com/exception-handling-in-java ... You should use an app with better exception handling! Commented Mar 31, 2023 at 19:43
  • @DrMoishePippik Thank you my friend, that's a good clue to start with.
    – Onluck
    Commented Mar 31, 2023 at 19:45
  • @John Thanks for your answer, troubleshooting prior to the error is not possible.
    – Onluck
    Commented Mar 31, 2023 at 19:46

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .