Posted On March 31, 2019

Analyze BSOD Dump File

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Analyze BSOD Dump File
    • Install Debugging Tools for Windows as Standalone Component
    • As Administrator, run CMD
  • cd “C:\Program Files (x86)\Windows Kits\8.0\Debuggers\x64\” 
  • kd -z C:\Windows\memory.dmp
  • .logopen c:\debuglog.txt
    .sympath srv*c:\symbols*http://msdl.microsoft.com/download/symbols
    .reload;!analyze -v;r;kv;lmnt;.logclose;q
  • Review the results by opening c:\debuglog.txt in your favorite text editor.  Searching for PROCESS_NAME: will show which process had the fault.  

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Windows: Disable Automatic Restart After Updates

1. Run gpedit.msc as Administrator2. Navigate to Local Group Policy Editor > Computer Configuration >…

PowerShell: Download and Expand Zip File – Legacy Compatible

function downloadFile{ param( $url, $tempFolder="C:\Temp" ) try{ $fileName=split-path $url -leaf $tempFile = "$tempFolder\$fileName" try{[Net.ServicePointManager]::SecurityProtocol =…

Symantec Antivirus 11 Installation Notes

- Endpoint protection manager is dependent on IIS, make sure that the "Default Website" "Directory…