How to read a Civil 3D mini dump file

June 17, 2025 Nick Turner

Title: How to Read Civil 3D Mini Dump Files (DMP) for Crash Analysis

Issue: Civil 3D Crashes and Creates a Mini Dump (.dmp) File

When Autodesk Civil 3D crashes, it often generates a mini dump file (.dmp) alongside crash logs in a folder like:

 

C:\Users\<YourName>\AppData\Local\CrashDumps\

Or as part of the Customer Error Report (CER) package that Autodesk prompts you to send. These .dmp files contain low-level system information from the moment of the crash and can help identify the cause — especially for DLL errors, corrupted subassemblies, or third-party plugins.

 

But how do you actually read a .dmp file?

 

Solution: Use WinDbg to Analyze the DMP

Civil 3D dump files are Windows memory snapshots, not something you can open directly in Civil 3D. Instead, use Microsoft’s WinDbg (Windows Debugger) or Visual Studio.

 

Using WinDbg (Lightweight & Free)

Step 1: Install WinDbg

Download WinDbg Preview from the Microsoft Store:

https://apps.microsoft.com/store/detail/windbg-preview

 

Step 2: Open the Mini Dump File

Launch WinDbg Preview

Go to File > Open Dump File

Select your .dmp file (from the CrashDumps or CER folder)

 

Step 3: Load Symbols (Optional but Helpful)

Symbols help match memory addresses to actual code.

Click File > Symbol File Path

Set path to Microsoft symbols:

srv*C:\symbols*https://msdl.microsoft.com/download/symbols

Restart WinDbg or reopen the dump.

 

Step 4: Run Analysis

Click analyze-v link or In the command input (at the bottom), type:

!analyze -v

 

Step 5: Read the Report

The output will show:

Faulting module (e.g., AeccCorridorBase.dll)

Exception code (e.g., 0xc0000005 = access violation)

Call stack and probable cause

 

 You don't need to be a programmer — just note what module failed and the exception.  Then google the error.

Previous Article
AutoCAD: “Unrecognized version cannot be read”
AutoCAD: “Unrecognized version cannot be read”

Next Article
AutoCAD: When Plotting a PDF “Error saving PDF file PDF File is open or uneditable”
AutoCAD: When Plotting a PDF “Error saving PDF file PDF File is open or uneditable”

Make sure to turn off Publish in background. Especially when using Vertical Programs (ie Civil 3D, Architec...

×

Get Tips Delivered.

Subscribe to Email Updates.

First Name
Last Name
Country
Thank you!
Error - something went wrong!