JIT service debugging
If you have services running under network service account (prior to Vista) and they crash you can use NTSD from recent Debugging Tools for Windows and -noio switch as described in the following article:
http://www.debuginfo.com/articles/ntsdwatson.html
You need to copy the latest ntsd.exe, dbghelp.dll and dbgeng.dll to some folder on your system if you don’t want to install Debugging Tools for Windows in your production environment.
The AeDebug key I use for 64-bit JIT debugging is
C:\ntsd\ntsd -p %ld -e %ld -g -noio -c ".dump /ma /u c:\TEMP\new.dmp; q"
It is always good to double check settings with TestDefaultDebugger tool.
- Dmitry Vostokov @ DumpAnalysis.org -