Hacker News new | ask | show | jobs
by yuhong 4987 days ago
You usually can get a backtrace using the right commands in WinDbg after opening the crash dump.
1 comments

indeed!

a trouble here is that the original fault is in user-mode csrss. you cannot use a user-mode debugger to debug csrss, so, to debug it you must use a kernel debugger. the process is involved. it is documented by microsoft though...

another trouble is that it seems that, at least on my systems, the ability to create a full dump of memory from the faulting process has been removed in w7. all you can do now is dump kernel mode memory, which would not include the needed information...