-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #306 from AdguardTeam/agm-1656-minidump-file
[AGM-1656] Use a minidump file to fix the BSoD error.md
- Loading branch information
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
--- | ||
title: How to create a minidump file to fix the BSoD error | ||
sidebar_position: 8 | ||
--- | ||
|
||
Almost all Windows users are familiar with the [Blue Screen of Death (BSoD)](https://en.wikipedia.org/wiki/Blue_screen_of_death) error unfortunately. BSoD occurs when the Windows system encounters problems that can affect safe system operation, such as problems with third-party driver code, hardware, or Microsoft code. To solve the blue screen error, users can use a minidump file. | ||
|
||
## What is Minidump file | ||
|
||
A minidump file is a file that contains the information about the nature of the system crash. It is created just before the blue screen appears and it has the minimum amount of useful information that can be used to solve the problem. The minidump file usually has a *.dmp* extension. | ||
|
||
:::note | ||
On Windows 10, the blue screen shows a stop code and a QR code. The user can use this information and search the Web for the specific problem. | ||
|
||
::: | ||
|
||
The option to create the minidump file is disabled by default, so before we go into more detail on how to use the file, let’s take a closer look at how to enable it. | ||
|
||
## Set up Windows to create the Minidump file | ||
|
||
Even if you don’t experience any BSoD crash errors, you can still set this option — this is a general recommendation, not necessarily related to AdGuard products. Please follow the instructions below to automatically create the minidump file. | ||
|
||
1. Type *sysdm.cpl* in the Windows search bar and click **Open**. The **System Properties Control Panel Menu** window will appear on the screen. | ||
|
||
:::tip | ||
|
||
Alternatively, click **Settings** → **System** → **About** → **Advanced system settings**. | ||
|
||
::: | ||
|
||
![System Properties *mobile_border](https://cdn.adtidy.org/blog/new/c2huSystem_Properties.jpeg) | ||
|
||
1. Go to the **Advanced** tab. | ||
1. In the **Startup and Recovery** section, click **Settings**. | ||
|
||
![Startup and Recovery *mobile_border](https://cdn.adtidy.org/blog/new/1dmybiStartup_and_Recovery.png) | ||
|
||
1. Enable the following three options: | ||
|
||
- Write an event to the system log | ||
- Automatically restart | ||
- Writing debugging information → Small memory dump (256 kb) | ||
|
||
![Three options *mobile_border](https://cdn.adtidy.org/blog/new/nmr4eThree_options.png) | ||
|
||
1. Click **OK** to apply the settings. | ||
1. Restart the computer. | ||
|
||
You've successfully enabled the minidump file. Now it will be created automatically when the system crashes. | ||
|
||
:::note | ||
|
||
By default the minidump file is stored in the **%SystemRoot%\Minidump** folder. You can change the directory location to whatever you like, but please remember that a lot of programs are set to look for this location by default, so we recommend that you do not change the location. | ||
|
||
::: |