I have a .NET 4 application running on Windows Server 2008 R2 in which I use a separate workflow to manage its life cycle (i.e., detect on / unexpected shutdown / reboot). This is great for typical conditions. However, when the application throws an exception, Windows invokes a debug window to debug the application. I just want the application to crash, so a process runner can detect a failure and manage accordingly.
How can I allow closing an application for an exception?
source
share