diff --git a/docs/guide/index.md b/docs/guide/index.md index ab0aa21..958a834 100644 --- a/docs/guide/index.md +++ b/docs/guide/index.md @@ -328,6 +328,21 @@ See [Time Travel Debugging Guide](dbgeng-ttd.md) See [Windows Kernel Debugging Guide](windows-kd.md) +### Loading Windows Dump Files + +- (optional) Open the executable file used to generate the dump +- Open `Debug Adapter Settings` dialog +- Select `WINDOWS_DUMP_FILE` adapter +- Change the executable path to the path of the dump file +- +- Click OK and then launch the target +- These information should be available if they have been recorded in the dump file: + - Register values + - Threads and stack traces + - Memory bytes +- Buttons to resume the target would have no effects + + ### Debugging without Opening a File Normally one would first open a file and then start debugging. However, the debugger can also be used without first opening a file. diff --git a/docs/img/debugger/windows_dump_file.png b/docs/img/debugger/windows_dump_file.png new file mode 100644 index 0000000..889a58c Binary files /dev/null and b/docs/img/debugger/windows_dump_file.png differ