Pages

Total Pageviews

Tuesday, January 22, 2013

Analyzing Memory Dump

Steps to analyze the memory dump :


  1. Install .Net Framework 4.5 
  2. Install the Debugger from following Microsoft Link :
    http://msdn.microsoft.com/en-us/windows/hardware/gg463009.aspx
  3. From Command Prompt navigate to following path
    "C:\Program Files\Debugging Tools for Windows (x64)\windbg.exe"
  4. Type following :
    kd –z C:\Windows\memory.dmp
  5. .logopen c:\debuglog.txt
  6. .sympath srv*c:\symbols*http://msdl.microsoft.com/download/symbols
  7. .reload;!analyze -v;r;kv;lmnt;.logclose;q
  8. Review the c:\debuglog.txt

No comments:

Post a Comment