Is there a way I can get a full crash dump when my application suddenly crashes?
The problem is that I suspect that this is due to unmanaged code that destroys the .net structure itself, and because of this, if the application is not connected to the application at the time of the crash, the application does not even get a chance to cope with the crash.
I canβt connect the debugger and wait, because the accident happens randomly, and we have a lot of installed places, so I wonder if this can be done without adding a debugger.
Edit: I am aware of the Microsoft Debugging SDK, and I also learned about DebugDiag. I would like to do this without applying to the application every time, as usual, in the middle of a sale, and I donβt have time to attach a debugger and examine the stack trace. It seems that DebugDiag allows me to configure a rule for this, but it seems to work only on already running processes, and does not wait for some process to start.
source share