How to Automatically Create a Dump File on Crash for Studios, Standalone Tools, and MiniTools
If a crash occurs, you can configure the system to automatically create a dump file for debugging purposes. Follow the steps below to create the required registry keys for different products, such as dbForge Studio, Standalone Tools, and MiniTools.
Steps to Configure Automatic Dump File Creation:
Open the Registry Editor:
- Press Start, type Regedit, and press Enter to open the Registry Editor.
Navigate to the following path:
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Windows Error Reporting
Create a new key:
- In the Windows Error Reporting folder, right-click and select New > Key.
- Name the new key LocalDumps.
Create a subkey for your application:
- Inside LocalDumps, create a new subkey with the name of the executable file for your application (e.g.,
dbForge_Studio_for_MySQL.exe
for dbForge Studio).
Add the following values to the application’s executable key:
Name | Type | Data | Description |
---|
DumpFolder | String Value | D:\current_product_Crashes | Folder where the dump files will be saved. |
DumpType | DWORD (32-bit) Value | 2 | 2 for a full dump. |
CustomDumpFlags | DWORD (32-bit) Value | 1124 | Additional custom dump settings. |
Instructions for Adding Values:
Create the DumpFolder value:
- Select the newly created subkey (e.g.,
current_product.exe
) in the tree on the left. - Right-click on the right side of the Registry Editor window and choose New > String Value.
- Name the value DumpFolder.
- Double-click the new DumpFolder value and set the data to:
D:\current_product_Crashes
.
Create the DumpType value:
- Right-click again on the right side and choose New > DWORD (32-bit) Value.
- Name it DumpType.
- Double-click the new DumpType value and set the data to:
2
.
Create the CustomDumpFlags value:
- Right-click once more and choose New > DWORD (32-bit) Value.
- Name it CustomDumpFlags.
- Double-click CustomDumpFlags and set the data to:
1124
.
Final Result:
After following these steps, your registry should look like this:
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Windows Error Reporting\LocalDumps\current_product.exe
Related Articles
How to Create a Dump File from Task Manager for Studios, Standalone Tools, and MiniTools
If you encounter issues with Studios, Standalone Tools, or MiniTools, you can generate a dump file using Task Manager for further troubleshooting. Follow these steps to create a dump file. Steps to Create a Dump File from Task Manager: Reproduce the ...
How to Create a Dump File from Task Manager for Studios, Standalone Tools, and MiniTools
If any of the following products become unresponsive or remain in Task Manager marked as "Not Responding," you can generate a dump file to help in troubleshooting. This applies to both Studios, Standalone Tools, and MiniToolsю Steps to Create a Dump ...
How to Enable Logging for Studios, Standalone Tools, and MiniTools
Logging is essential for capturing detailed information about failures and issues within the software. If reproducing or diagnosing a problem is difficult, or if deeper investigation is needed, logging can help gather more information for ...
How to Start dbForge Products with Logging for Studios, Standalone Tools, and MiniTools
If a dbForge product crashes or becomes unresponsive upon startup, logging is required for a detailed record of failures and issues. This guide helps you launch dbForge products with logging enabled to capture essential information for ...
How to generate "dump_crash" for SSMS , including ADD-in Tools
In case SSMS (SQL Server Management Studio) crashes, you can set up your system to automatically create a dump file for debugging purposes. Follow these steps to create the necessary registry keys. Steps to Configure Automatic Dump File Creation for ...