打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
Minidump Analysis
userphoto

2011.06.14

关注
So you got a XP blue screen of death (BSOD) and you'd liketo have a crack at fixing it? Well hopefully this might help.

Turn On Minidumps

If you havn't already turned on minidumps, go to the Control Panel and follow this steps:
  1. System Icon
  2. Advanced Tab
  3. Startup and Recovery -> Settings
  4. Enable Write an Event to the system log
  5. Disable Automatically Restart
  6. Select the following debugging information:
    • Small memory dump (64 Kb)
    • Small Dump Directory : %SystemRoot%\Minidump
  7. Confirm all and restart the computer.

Crash It

Do whatever to make it crash. In my case it was leave the video encoding running overnight.

Install Tools

If you havn't got the windows debugging tools installed, then install theMicrosoftDebugging Tools (Direct Link)

Analyse The MiniDump

To extract useful information out of the minidump file created:
  1. Open a command prompt (Start -> Run -> "cmd")
  2. cd \program files\debugging tools (Or wherever they are installed to)
  3. kd -z C:\WINDOWS\Minidump\Mini???????-??.dmp
  4. kd> .logopen c:\debuglog.txt
  5. kd> .sympath srv*c:\symbols*http://msdl.microsoft.com/download/symbols
  6. kd> .reload;!analyze -v;r;kv;lmnt;.logclose;q
  7. You now have a debuglog.txt in c:\, open it in a text edit (Notepad?).

Post Mortem

Look for the MODULE_NAME and IMAGE_NAME headings. This is the program thatcaused the error. Sometimes when it's a device driver it means that thatdevice is causing the BSOD and by disabling it or updating the driver yoursystem will run stable. If you don't know what device that name relates tothen Google it.

(Under no circumstance ask me about your crash. I provide this information for freewithout any support.)

Hope it helps.

本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
WinDbg 检查蓝屏死机的幕后真凶
学会自己分析解决蓝屏问题
[转]window下使用SetUnhandledExceptionFilter捕获让程序的崩溃
Android使用google breakpad捕获分析native cash
Android 的main.mk完整分析
学会这个绝招,让 C 崩溃无处可逃!
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服