A postmortem debugger is where an application dumps its data for analysis when it encounters an error. For Windows computers, the default postmortem debugger tool is the Dr. Watson tool. This is the debugger tool that pops-up a message, which asks you whether you want to send Microsoft a report of the error. The Windows Debugger (WinDbg) is another debugging tool that can be used as a postmortem debugger. It's a more comprehensive tool because it can debug the computer, not just an application, when it crashes.

  • A postmortem debugger is where an application dumps its data for analysis when it encounters an error.
  • The Windows Debugger (WinDbg) is another debugging tool that can be used as a postmortem debugger.

Click "Start" and "Run."

Type "regedit" without the quotation marks to open the registry editor.

Expand "HKEY_LOCAL_MACHINE" and go to "Software." Click on "Microsoft, "WindowsNT," "Current Version" and "AeDebug."

Double-click the registry key "Debugger" on the right-window pane.

Change the entry to "drwtsn32 -p %ld -e %ld -g" -- including the quotation marks -- to change the postmortem debugger back to its default.

Click "OK" and close the registry editor.

WARNING

Before doing any changes in the registry, it is important to create a backup first. To backup the entire registry, right-click "Computer" in registry editor and click "Export."