Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Question
Tuesday, August 1, 2017 9:22 PM
After visit sugested page following advice from IT .
https://developer.microsoft.com/en-us/windows/hardware/windows-driver-kit
I wanted to be sure I get proper program for analyzing crash on blue screen BSOD I found new version of dumpchk.exe .This program called **windbg.exe ** with location patch after instalation as follows:
C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\
In this folder " x64 " I seen many other programs never seen b4 like : usbview.exe, cdb.exe,remote.exe,ntsd.exe ,logger.exe... and more.
Anyone can give me clue where can I find turtorials and manuals?
I found this :https://docs.microsoft.com/pdfstore/en-us/Win.wdkdocs/live/debugger.pdf
That huge e book for Debugging Tools for Windows , and mentioned programs include all info, I believe?
Is this what I looking for?
Where can I find all avaliable database BSOD codes till today? Somebody can confirm that I have proper updated collected BSOD and named ?>
https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/bug-check-code-reference2
last update was done on 5/24/2017.Anyone from community are collecting crash codes BSOD data?
Regards
All replies (1)
Tuesday, August 1, 2017 10:00 PM
Well for 'analyzing crash on blue screen BSOD' WinDbg is used a lot on these forums. So open that. You will need to added a symbol path so File > Symbol File Path... and add
http://msdl.microsoft.com/download/symbols
Then use File > Open Crash Dump... let that run. Hopefully it gives a 'Probably caused by :' and a file name that can be looked up to a file that is known and can upgraded \ rolled back \ reported to help. Beyond that WinDbg can do more much more than I know and I have been using it for months.