Skip to content

Instantly share code, notes, and snippets.

@mkckr0
Created October 20, 2023 02:21
Show Gist options
  • Save mkckr0/70d3aa343e0ecb4bd080c0dc90d38195 to your computer and use it in GitHub Desktop.
Save mkckr0/70d3aa343e0ecb4bd080c0dc90d38195 to your computer and use it in GitHub Desktop.
Enable Core Dump on Windows
REG ADD "HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps" /f
REG ADD "HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps" /v DumpFolder /t REG_EXPAND_SZ /d "%%LOCALAPPDATA%%\CrashDumps" /f
REG ADD "HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps" /v DumpCount /t REG_DWORD /d 10 /f
REG ADD "HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps" /v DumpType /t REG_DWORD /d 2 /f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment