kiewic
kiewic

Reputation: 16450

How to get crash dump in Windows 8.1 without using WinDbg

I have a user who is running one of my apps, and he is seeing the app crash. How can I get a crash dump from his computer without asking him to use WinDbg?

I have read other questions, and this was easy to do in Windows XP using Dr. Watson, but it seems that option is not available in Windows 8.1 anymore.

Other answer points to c:\Users\[user]\AppData\Local\Microsoft\Windows\WER\ReportArchive directory, but I only see WER files there.

Any idea how to get crash dumps?

Thanks.

Upvotes: 0

Views: 6260

Answers (2)

user4480549
user4480549

Reputation: 11

ProcDump from SysInternals.

Register as the Just-in-Time (AeDebug) debugger. Makes full dumps in c:\dumps.

C:\>procdump -ma -i c:\dumps

Upvotes: 1

rrirower
rrirower

Reputation: 4590

I wrote a program to trap WER crash dumps. I was able to use the keys mentioned in this article to trap the dump file locally. The only subtle requirement was that the program had to run with administrator rights. If you follow this methodology, make sure you run the program again to disable trapping crash reports because changing those keys could affect all future crash dumps for other applications.

Upvotes: 1

Related Questions