Resurrecting Dr. Watson on Vista

CARE: Crash Analysis Report Environment

DATA (Dump Analysis + Trace Analysis) Facebook group
Please join the community of memory (dump) and trace analysis engineers. This group promotes scientific methods and memory dump-based worldview.

Twitter @ DumpAnalysis
You can now follow portal and blog news at DumpAnalysis on Twitter

LinkedIn Group Dr. Watson Enthusiasts
All about Dr. Watson errors and more. Get news, excerpts and progress reports about the forthcoming book The Science of Dr. Watson: An Illustrated History of Debugging (ISBN 978-1906717070)

2010 (0x7DA) - The Year of Dump Analysis
2011 (0x7DB) - 2020 (0x7E4) The Debugging Decade

Feeling nostalgic about pre-Vista times I recalled that one month before upgrading my Windows XP to Vista I saved the copy of Dr. Watson (drwtsn32.exe). Of course, during upgrade, drwtsn32.exe was removed from system32 folder. Now I copied it back and set it as the default postmortem debugger from the elevated command prompt:

When I looked at the registry I found the correctly set key values:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug
Debugger=drwtsn32 -p %ld -e %ld -g
Auto=1

Auto=1 means do not show the error message box, just go ahead and dump the process. Actually with Auto=0 Dr. Watson doesn’t work on my Vista.

Also I configured Dr. Watson to store the log and full user dump in c:\DrWatson folder by running drwtsn32.exe from the same elevated command prompt:

Next I launched TestDefaultDebugger and hit the big crash button. Access violation happened and I saw familiar “Program Error” message box:

The log was created and the user dump was saved in the specified folder. All subsequent crashes were appended to the log and user.dmp was updated. When I opened the dump in WinDbg I got the following output:

Loading Dump File [C:DrWatsonuser.dmp]
User Mini Dump File with Full Memory: Only application data is available
Comment: ‘Dr. Watson generated MiniDump’
Symbol search path is: SRV*c:\websymbols*http://msdl.microsoft.com/download/symbols
Executable search path is:
Windows Vista Version 6000 UP Free x86 compatible
Product: WinNt, suite: SingleUserTS
Debug session time: Sat May 19 20:52:23.000 2007 (GMT+1)
System Uptime: 5 days 20:00:04.062
Process Uptime: 0 days 0:00:03.000
This dump file has an exception of interest stored in it.
The stored exception information can be accessed via .ecxr.
(1f70.1e0c): Access violation - code c0000005 (first/second chance not available)
eax=00000000 ebx=00000001 ecx=0012fe70 edx=00000000 esi=00425ae8 edi=0012fe70
eip=004014f0 esp=0012f8a8 ebp=0012f8b4 iopl=0 nv up ei ng nz ac pe cy
cs=001b ss=0023 ds=0023 es=0023 fs=003b gs=0000 efl=00010297
TestDefaultDebugger!CTestDefaultDebuggerDlg::OnBnClickedButton1:
004014f0 c7050000000000000000 mov dword ptr ds:[0],0 ds:0023:00000000=???????

Therefore I believe that if I saved ntsd.exe before upgrading to Vista I would have been able to set it as a default postmortem debugger too.

- Dmitry Vostokov -

           

Announcements

Coming Soon:

Debugging Notebook: Essential Concepts, WinDbg Commands and Tools

Crash Dump Analysis for System Administrators and Support Engineers

New Magazines:

Debugged! MZ/PE: MagaZine for/from Practicing Engineers


New Books:

Memory Dump Analysis Anthology, Volume 3

First Fault Software Problem Solving: A Guide for Engineers, Managers and Users

x64 Windows Debugging: Practical Foundations

Also available:

Windows Debugging: Practical Foundations

DLL List Landscape: The Art from Computer Memory Space

Dumps, Bugs and Debugging Forensics: The Adventures of Dr. Debugalov

WinDbg: A Reference Poster and Learning Cards

Memory Dump Analysis Anthology, Volume 2

Memory Dump Analysis Anthology, Volume 1

New Children's Book:

Baby Turing

8 Responses to “Resurrecting Dr. Watson on Vista”

  1. Matt C. Says:

    Where do you put the string “Debugger=drwtsn32 -p %ld -e %ld -g”?

  2. Dmitry Vostokov Says:

    Under

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug

    registry key

  3. Abok Says:

    Hi Dmitry,

    I am not able to exactly understand what this one means:

    “SRV*c:websymbols*http://msdl.microsoft.com/download/symbols;c:”

    Does it mean download from symbols MS and store it in c:\websymbols and c:\ ? And why there is no “\” in “c:websymbols” ?

    Thanks

  4. Dmitry Vostokov Says:

    This means that WinDbg will download symbols from MS symbol server automatically. It will store them in c:\websymbols. There is no “\” in “c:websymbols” because I forgot to add one… The second “c:” is left from some debugging session in the past where I put one symbol file on C:\. Forgot to remove it :-) I corrected the post.

  5. Dmitry Vostokov Says:

    Comment to my post:

    > Therefore I believe that if I saved ntsd.exe before upgrading to Vista…

    Actually NTSD is available if you install the latest Debugging Tools for Windows

  6. Matt C. Says:

    Hello Dmitry,
    I’m still having problems getting dr. watson to work on vista, I’m not sure if I setup the registry correctly. I Created a variable called Debuger, set it equal to the directory of dr.watson, then made an auto variable, set it’s value to one, after all that, ran a crash test, but still no luck. Could you possibly post a snapshot of your debug registry?

  7. Dmitry Vostokov Says:

    I’ll check later today but in the mean time could you please check whether you configured crash dump folder in Dr. Watson? The default Dr. Watson folder might not exist on Vista or may have different permissions

    Thanks,
    Dmitry

  8. Crash Dump Analysis » Blog Archive » Reflecting on 2008 (Part 1) Says:

    […] failed, 0×80070026 memory analysis intelligence minidump analyzer dxg.sys crash dump vista dr watson vista calling+kernel+functions+from+userspace crash dump analyzer how to open corrupt memory dump […]

Leave a Reply