I would like to create process dump file at the moment when access violation that will not be handled occurred.
Currently, I have registered mine, unhandled exceptio
To keep the exception context intact you can create the minidump from an outer process, which debugs the process of interest with DebugActiveProcess
API and receives exception events as a part of debugging. Minidump creation preceding release of the debugee with ContinueDebugEvent
preserves call stack and exception context.