1. WinDbg (X86)로 Dump 체크 한다.

   - Dump가 제대로 없는 경우, 대략 난감


2. 드라이버 점검 : 윈도우XP verifier로 테스트 해보기

http://social.technet.microsoft.com/Forums/en-US/w7itprogeneral/thread/70294dd8-bd5e-4620-b7aa-46b6c3e786d1/ 



[점검 방법 설명]

I think the fastest way to track this on is to use a testing tool called Driver Verifier.

If this tool finds a problem, your machine will crash again.  Hopefully with it enabled, it will allow you to easily identify the bad driver.

Enable driver verifier
1) Open an elevated command prompt
2) Type "verifier /standard /all"  (no quotes)
3) Reboot your machine
4) Use machine again until it crashes (hopefully this will be fast :)

After the crash & reboot, go into safe mode.  http://windowshelp.microsoft.com/Windows/en-US/Help/323ef48f-7b93-4079-a48a-5c58eec904a11033.mspx

Disable driver verifier
1) Open an elevated command prompt
2) Type "verifier /reset" (no quotes)
3) Reboot your machine

Then using the steps you followed before, take a look at the new memory dump.


이상.

+ Recent posts