Prevent windows from presenting any dialog on native code unhandled exception
- by Lucas Meijer
Our buildserver compiles and runs testsuites for many different c++ programs. From time to time the programs are buggy, and can crash.
When they crash, Windows7 will always throw this modal dialog:
Which has to be clicked away by a human being, causing the buildserver to sit idle.
Is there a way to at a system level prevent this from happening?
I know I can do it from within the process itself, but I'd love to be able to do it across the entire system.