What’s a crash dump?
A crash dump ( .dmp ) is Windows’ snapshot of what an app was doing the instant it fell over. It lets us pinpoint the offending code instead of guessing.
By default Windows doesn’t create these files, so you’ll need to turn the feature on once. It takes about two minutes.
Step-by-Step — Enable Crash Dumps
Safety first: we’ll tweak one small area of the Windows registry. Back it up before you edit—just in case.
-
Open Registry Editor
-
Press Win + R, type
regedit
, hit Enter. -
Approve the User Account Control prompt.
-
-
Back Up the Key We’re About to Change
-
Navigate to
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\
-
Right-click Windows Error Reporting → Export → save the .reg file somewhere safe (Desktop is fine).
-
-
Create a “LocalDumps” Key
-
In that same Windows Error Reporting folder, right-click, choose New ► Key.
-
Name the new key LocalDumps.
-
-
Add Three Values inside LocalDumps
Value Type Data What it does DumpFolder Expandable String ( REG_EXPAND_SZ
)%LOCALAPPDATA%\CrashDumps
Where dumps are stored DumpCount DWORD (32-bit) 10
Max number of dumps before the oldest is overwritten DumpType DWORD (32-bit) 2
2 = full dump (best for debugging) To add each one: right-click the blank area on the right-hand pane → New → choose the correct type → enter the name and data above.
-
Reproduce the Crash & Grab the File
-
Relaunch the app, make it crash, then open:
%LOCALAPPDATA%\CrashDumps
-
You’ll see a file named something like
ProTools.exe.1234.dmp
.
Zip it and send it back to us along with the session log we requested.
-
That’s it! Once you’re done with support you can leave the dump feature on (handy for future issues) or simply delete the LocalDumps key to disable it.