Все способы:
- Способ 1: Журнал событий
- Способ 2: Сторонние приложения
- WinDbg
- BlueScreenView
- Вопросы и ответы: 1
Способ 1: Журнал событий
Простой, но не самый удобный способ определения кода синего экрана, так как он предполагает выполнение дополнительных действий.
- Откройте системный «Журнал событий» командой
eventvwr.msc
, выполненной в вызванном нажатием клавиш Win + R диалоговом окошке быстрого запуска. - Нажмите в правой колонке ссылку «Фильтр текущего журнала».
- В открывшемся окне отметьте флажком пункт «Критическое» и нажмите «ОК», чтобы отфильтровать события.
- Выберите последнюю запись об ошибке и откройте ее свойства двойным по ней кликом.
- Переключитесь на вкладку «Подробности», отыщите в списке параметр «BugCheckCode» и посмотрите его значение. Это и будет код ошибки в десятичном счислении.
- Переведите его в шестнадцатеричную систему счисления, воспользовавшись штатным «Калькулятором» Windows, переключив его в режим «Программист» (через меню, вызванное нажатием по кнопке меню слева вверху). Результат будет указан в строке «HEX» без нулей, которые понадобится добавить. Например, EF = 0x000000EF.
Теперь можно выполнить поиск решения проблемы в интернете, указав полученный шестнадцатеричный код ошибки BSOD.
Способ 2: Сторонние приложения
Удобнее определять ошибку через специальные приложения, работающие с файлом дампа. По умолчанию его создание включено в Windows, но если вы отключали его создание вручную, то просмотреть стоп-код таким образом не получится из-за отсутствия файла для анализа сбоя.
WinDbg
Синий экран со стоп-ошибками в Windows 10 не отличается информативностью и нередко содержит только название ошибки, но не ее код. Чтобы определить ее код, необходимо проанализировать файл минидампа. Сделать это можно средствами фирменной утилиты Microsoft WinDbg.
Скачать WinDbg с официального сайта
- Скачайте приложение для анализа дампов с Microsoft Store или официальной страницы разработчика и установите.
- Запустите программу от имени администратора и нажмите в левом верхнем углу кнопку «Файл».
- Выберите в меню опцию «Open dump file», нажмите кнопку «Browse», укажите путь к анализируемому файлу дампа в папке
C:\Windows\Minidump
и нажмите «Open». Папка Minidump может содержать несколько файлов c расширением DMP, из них следует выбирать тот, который имеет название, соответствующее дате и времени ошибки синего экрана. - Прокрутите содержимое блока «Command» вниз, найдите ссылку «!analyze -v» и кликните по ней. Вместо этого можно вставить команду
!analyze -v
в поле под блоком «Command» и нажать клавишу ввода. - Отладчик выполнит анализ файла дампа и выведет в блок «Command» подробные сведения об ошибке. Ищите ее название – код будет указан напротив него в полном или сокращенном виде, например 139, 0x139 или 0x00000139.
Кроме кода WinDbg позволяет получать множество других полезных сведений об ошибке, в частности аргументы и имя исполняемого файла, вызвавшего критический сбой.
BlueScreenView
Для получения кода ошибки экрана BSOD также можно использовать стороннюю утилиту BlueScreenView. Она не настолько функциональна как WinDbg, но намного проще и меньше инструмента от Microsoft.
Скачать BlueScreenView с официального сайта
- Скачайте архив с утилитой с сайта разработчика, распакуйте его и запустите исполняемый файл. Там можно скачать и языковой файл — для русификации интерфейса поместите языковой файл в папку с исполняемым файлом «BlueScreenView.exe».
- По умолчанию утилита автоматически считывает все файлы дампов в папке
C:\Windows\Minidump
, но если в вашем случае файл дампа находится в другом месте, откройте дополнительные параметры утилиты комбинацией клавиш Ctrl + 0. - В открывшемся окошке выберите пункт «Загрузить один файл МиниДампа» и укажите путь к файлу DMP.
- Просмотрите содержимое колонки «Код ошибки» — в нем будет указан искомый код в шестнадцатеричном формате.
Помимо кода ошибки синего экрана, утилита BlueScreenView показывает сбойный драйвер, список связанных файлов, параметры, стеки адресов и другие отладочные сведения.
Наша группа в TelegramПолезные советы и помощь
Автор Владимир!
Привет друзья! Недавно на нашем сайте вышла статья о Синем экране смерти в Windows 10. В ней мы подробно описали как восстановить ОС, в случае появления BSOD. Вся сложность восстановления системы после критической ошибки на синем экране состоит в том, что Windows перестаёт нормально загружаться и необходим загрузочный LiveCD с программой BlueScreenView, чтобы определить некорректные системные файлы или драйвера, вызвавшие ошибку. В сегодняшней статье я хочу рассказать ещё об одном инструменте под названием «Анализатор сбоев», с помощью которого можно проанализировать аварийные дампы памяти и установить причину появления в вашей Windows синего экрана. Чем примечателен этот инструмент? Дело в том, что находится он на загрузочном диске спасения MSDaRT 10, на котором имеется ещё с десяток полезных утилит для восстановления ОС после серьёзного сбоя. Из ISO-образа MSDaRT можно сделать загрузочную флешку, затем загрузить с неё компьютер и установить причину появления BSOD. Читаем подробности.
Как узнать причину возникновения синего экрана смерти (BSOD) в случае, если Windows 10 не загружается. Или как пользоваться инструментом «Анализатор сбоев» загрузочного диска восстановления Microsoft Diagnostic and Recovery Toolset 10 x64 (MSDaRT)
Microsoft Diagnostics and Recovery Toolset или сокращённо MSDaRT — знаменитейший LiveCD для аварийного восстановления Windows, появившийся в далёком 2006 году и называвшийся тогда ERD Commander. С помощью него можно было запросто восстановить Windows XP после серьёзного сбоя. В том же году идея была приобретена Microsoft и до сих пор постоянно усовершенствуется, надо сказать, диск и сегодня довольно актуален среди профессиональных системных администраторов. Для Windows 10 используется версия MSDaRT 10. С помощью LiveCD можно подключится к незагружающейся Win 10 и произвести различные манипуляции для её восстановления, к примеру: отредактировать реестр и автозагрузку, восстановить удалённые файлы и др. Также диск содержит «Мастер решений», способный подсказать вам, какой именно инструмент выбрать в той или иной критической ситуации. Ещё MSDaRT 10 имеет «Анализатор сбоев», с помощью которого можно произвести анализ аварийных дампов памяти и сегодня я покажу вам, как это можно сделать.
К большому сожалению MSDaRT 10 входит в состав платного пакета Microsoft Desktop Optimization Pack 2015. Как скачать данный пакет и создать с помощью него MSDaRT читайте в этой статье. Не удивлюсь и предположу, что многие пользователи не будут заморачиваться и скачают уже готовый ISO-образ MSDaRT на торренте, из которого потом сделают загрузочную флешку программой WinSetupFromUSB.
Итак, думаю для вас не составило труда раздобыть DaRT 10 и создать из него загрузочную флешку.
Загружаем с флешки наш компьютер с ошибкой синего экрана.
Мне не нужен интернет и я жму «Нет».
Раскладка клавиатуры «Русская».
«Поиск и устранение неисправностей»
Microsoft Diagnostics and Recovery Toolset.
В главном окне диска видим все доступные инструменты.
Выбираем «Анализатор сбоев (Анализ аварийных дампов)»
Далее.
Обзор.
В появившемся проводнике выбираем диск MSDaRT (буква диска — Boot (X:), затем Program Files и Debugging Tools for Windows.
ОК.
Далее.
У вас автоматически должен быть отмечен пункт «Загрузить файлы символов в эту папку» C:\symbols.
Далее.
Место расположения файла аварийного дампа памяти MEMORY.DMP должно быть выбрано автоматически — C:\Windows.
Далее.
Происходит анализ аварийного дампа.
Смотрим результат анализа сбоя, с указанием виновного драйвера.
Также рассмотрим расширенные данные об ошибке BSOD. Жмём на кнопку «Сведения»
На вкладке «Сообщение о сбое» указывается драйвер причины BSOD.
На вкладке «Загруженные драйверы» указывается установленные на момент сбоя драйвера.
На вкладке «Дополнительно» содержание лога с полной информацией о сбое системы.
Метки к статье: LiveDisk MSDaRT Ошибки
BlueScreenView v1.55 Copyright (c) 2009 — 2015 Nir Sofer |
Related Utilities
- WinCrashReport — Displays a report about crashed Windows application.
- WhatIsHang — Get information about Windows software that stopped responding (hang)
- AppCrashView — View application crash information on Windows 7/Vista.
See Also
- NK2Edit — Edit, merge and fix the AutoComplete files (.NK2) of Microsoft Outlook.
Description
BlueScreenView scans all your minidump files created during ‘blue screen of death’ crashes, and displays the information about all crashes in one table.
For each crash, BlueScreenView displays the minidump filename, the date/time of the crash, the basic crash
information displayed in the blue screen (Bug Check Code and 4 parameters), and the details of the driver or module
that possibly caused the crash (filename, product name, file description, and file version).
For each crash displayed in the upper pane, you can view the details of the device drivers loaded during the crash in the lower pane.
BlueScreenView also mark the drivers that their addresses found in the crash stack, so you can easily locate the suspected drivers that possibly caused the crash.
Download links are on the bottom of this page
Versions History
- Version 1.55:
- Added Drag & Drop support: You can now drag a single MiniDump file from Explorer into the main window of BlueScreenView.
- Fixed bug: BlueScreenView failed to remember the last size/position of the main window if it was not located in the primary monitor.
- Version 1.52:
- Added ‘Google Search — Bug Check’ and ‘Google Search — Bug Check + Parameter 1’ options.
- Version 1.51:
- Added automatic secondary sorting (‘Crash Time’ column).
- Added 64-bit build.
- Version 1.50:
- The ‘Crash Time’ now displays more accurate date/time of the crash.
In previous versions, the value of ‘Crash Time’ column was taken from the date/time of dump file, which actually represents that time that Windows loaded again, after the crash.
The actual crash time is stored inside the dump file , and now the ‘Crash Time’ displays this value. - Added ‘Dump File Time’ column, which displays the modified time of the dump file.
- The ‘Crash Time’ now displays more accurate date/time of the crash.
- Version 1.47:
- Added ‘Auto Size Columns+Headers’ option, which allows you to automatically resize the columns according to the row values and column headers.
- Version 1.46:
- Fixed issue: The properties and the ‘Advanced Options’ windows opened in the wrong monitor, on multi-monitors system.
- Version 1.45:
- You can now choose to open only a specific dump file — from the user interface or from command-line.
- You can now also specify the MiniDump folder or MiniDump file as a single parameter, and BlueScreenView
will be opened with the right dump file/folder, for example:
BlueScreenView.exe C:\windows\minidump\Mini011209-01.dmp
- Version 1.40:
- Added ‘Raw Data’ mode on the lower pane, which displays the processor registers and memory hex dump.
- Version 1.35:
- Added ‘Crash Address’ column.
- Added 3 columns that display that last 3 calls found in the stack
(Only for 32-bit crashes)
- Version 1.32:
- Added ‘Mark Odd/Even Rows’ option, under the View menu. When it’s turned on, the odd and even rows are displayed in different color, to make it easier to read a single line.
- Version 1.31:
- Added ‘Google Search — Bug Check+Driver’ for searching in Google the driver name and bug check code of the selected blue screen.
- Version 1.30:
- Added ‘Dump File Size’ column.
- Version 1.29:
- You can now send the list of blue screen crashes to stdout by specifying an empty filename («») in the command-line of all save parameters.
For example: bluescreenview.exe /stab «» > c:\temp\blue_screens.txt
- You can now send the list of blue screen crashes to stdout by specifying an empty filename («») in the command-line of all save parameters.
- Version 1.28:
- Added ‘Add Header Line To CSV/Tab-Delimited File’ option. When this option is turned on, the column names are added
as the first line when you export to csv or tab-delimited file.
- Added ‘Add Header Line To CSV/Tab-Delimited File’ option. When this option is turned on, the column names are added
- Version 1.27:
- Fixed issue: removed the wrong encoding from the xml string, which caused problems to some xml viewers.
- Version 1.26:
- Fixed ‘DumpChk’ mode to work properly when DumpChk processing takes more than a few seconds.
- Version 1.25:
- Added ‘DumpChk’ mode, which displays the output of Microsoft DumpChk utility (DumpChk.exe).
You can set the right path and parameters of DumpChk in ‘Advanced Options’ window.
By default, BlueScreenView tries to run DumpChk from ‘%programfiles%\Debugging Tools for Windows’ - The default MiniDump folder is now taken from HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl
- Added ‘DumpChk’ mode, which displays the output of Microsoft DumpChk utility (DumpChk.exe).
- Version 1.20:
- Added 3 new columns in the upper pane: Processors Count, Major Version, Minor Version.
- Added ‘Explorer Copy’ option, which allows you to copy dump files to the clipboard and then paste them into Explorer window.
- Version 1.15:
- Added option to view the blue screen list of multiple computers on your network.
The computer names are specified in a simple text file. (See below). - Added Combo-Box to easily choose the MiniDump folders available in the hard-disks currently attached to your computer.
- Added ‘Computer Name’ and ‘Full Path’ columns.
- Added option to view the blue screen list of multiple computers on your network.
- Version 1.11:
- Added /sort command-line option.
- Version 1.10:
- Added accelerator keys for allowing you to toggle between modes more easily.
- Added command-line options for saving the crash dumps list to text/csv/html/xml file.
- Added command-line option for opening BlueScreenView with the desired MiniDump folder.
- Fixed focus problems when opening the ‘Advanced Options’ window.
- Added ‘default’ button to the ‘Advanced Options’ window.
- Added ‘processor’ column — 32-bit or x64.
- Version 1.05 — Added support for x64 MiniDump files.
- Version 1.00 — First release.
BlueScreenView Features
- Automatically scans your current minidump folder and displays the list of all crash dumps, including crash dump date/time and crash details.
- Allows you to view a blue screen which is very similar to the one that Windows displayed during the crash.
- BlueScreenView enumerates the memory addresses inside the stack of the crash, and find all drivers/modules that might be involved in the crash.
- BlueScreenView also allows you to work with another instance of Windows, simply by choosing the right minidump folder (In Advanced Options).
- BlueScreenView automatically locate the drivers appeared in the crash dump, and extract their version resource information, including product name, file version, company, and file description.
System Requirements
- BlueScreenView works with Windows XP, Windows Server 2003, Windows Server 2008, Windows Vista, Windows 7, Windows 8, Windows 10,
as long as Windows is configured to save minidump files during BSOD crashes.
If your system doesn’t create MiniDump files on a blue screen crash,
try to configure it according to the following article:
How to configure Windows to create MiniDump files on BSOD - BlueScreenView can read the MiniDump files of both 32-bit and x64 systems.
- Be aware that on Windows 10, some of the created MiniDump files might be empty and BlueScreenView will not display them.
Using BlueScreenView
BlueScreenView doesn’t require any installation process or additional dll files.
In order to start using it, simply run the executable file — BlueScreenView.exe
After running BlueScreenView, it automatically scans your MiniDump folder and display all crash details in the upper pane.
Crashes Information Columns (Upper Pane)
- Dump File: The MiniDump filename that stores the crash data.
- Crash Time: The created time of the MiniDump filename, which also matches to the date/time that the crash occurred.
- Bug Check String: The crash error string. This error string is determined according to the Bug Check Code, and it’s also displayed in the blue screen window of Windows.
- Bug Check Code: The bug check code, as displayed in the blue screen window.
- Parameter 1/2/3/4: The 4 crash parameters that are also displayed in the blue screen of death.
- Caused By Driver: The driver that probably caused this crash.
BlueScreenView tries to locate the right driver or module that caused the blue screen by looking inside the crash stack.
However, be aware that the driver detection mechanism is not 100% accurate, and you should also look in the lower pane, that display all drivers/modules found in the stack.
These drivers/modules are marked in pink color. - Caused By Address: Similar to ‘Caused By Driver’ column, but also display the relative address of the crash.
- File Description: The file description of the driver that probably caused this crash.
This information is loaded from the version resource of the driver. - Product Name: The product name of the driver that probably caused this crash.
This information is loaded from the version resource of the driver. - Company: The company name of the driver that probably caused this crash.
This information is loaded from the version resource of the driver. - File Version: The file version of the driver that probably caused this crash.
This information is loaded from the version resource of the driver. - Crash Address:The memory address that the crash occurred. (The address in the EIP/RIP processor register)
In some crashes, this value might be identical to ‘Caused By Address’ value, while in others,
the crash address is different from the driver that caused the crash. - Stack Address 1 — 3:
The last 3 addresses found in the call stack.
Be aware that in some crashes, these values will be empty.
Also, the stack addresses list is currently not supported for 64-bit crashes.
Drivers Information Columns (Lower Pane)
- Filename: The driver/module filename
- Address In Stack: The memory address of this driver that was found in the stack.
- From Address: First memory address of this driver.
- To Address: Last memory address of this driver.
- Size: Driver size in memory.
- Time Stamp: Time stamp of this driver.
- Time String: Time stamp of this driver, displayed in date/time format.
- Product Name: Product name of this driver, loaded from the version resource of the driver.
- File Description: File description of this driver, loaded from the version resource of the driver.
- File Version: File version of this driver, loaded from the version resource of the driver.
- Company: Company name of this driver, loaded from the version resource of the driver.
- Full Path: Full path of the driver filename.
Lower Pane Modes
Currently, the lower pane has 4 different display modes.
You can change the display mode of the lower pane from Options->Lower Pane Mode menu.
- All Drivers:
Displays all the drivers that were loaded during the crash that you selected in the upper pane.
The drivers/module that their memory addresses found in the stack, are marked in pink color. - Only Drivers Found In Stack:
Displays only the modules/drivers that their memory addresses found in the stack of the crash.
There is very high chance that one of the drivers in this list is the one that caused the crash. - Blue Screen in XP Style:
Displays a blue screen that looks very similar to the one that Windows displayed during the crash. - DumpChk Output:
Displays the output of Microsoft DumpChk utility.
This mode only works when Microsoft DumpChk is installed on your computer and
BlueScreenView is configured to run it from the right folder (In the Advanced Options window).
You can get DumpChk from the installation CD/DVD of Windows or
with the installtion of Debugging Tools for Windows.
Crashes of Remote Network Computer
If you have multiple computers on your network and you have full administrator access to them
(e.g: you have access to \\ComputerName\c$), you can also view the crashes of the other computers on your network remotely.
In order to do that, simply go to ‘Advanced Options’ (Ctrl+O) and type the MiniDump folder of the remote
computer, for example: \\MyComp\c$\Windows\MiniDump.
Notice: If you fail to get full administrator access to the remote computer, you should read the instructions in the following Blog post:
How to connect a remote Windows 7/Vista/XP computer with NirSoft utilities.
Watching the crashes of multiple computers on your network
If you have a network with multiple computers, and you have full admin access to these computers, you can
view the blue screens list of all these computers in one table, and easily detect computers with recurring BSOD problems.
In order to use this feature, prepare a list of all computer names/IP addresses that you want to inspect, and save it to a simple text file.
The computer names in the list can be delimited by comma, semicolon, tab character, or Enter (CRLF).
Example for computer names list:
comp01 comp02 192.168.0.1 192.168.0.2 192.168.0.4
After you have a text file contains the computers list, you can go to Advanced Options window (Ctrl+O), choose the second option and type the computers list filename.
Command-Line Options
/LoadFrom <Source> |
Specifies the source to load from. 1 -> Load from a single MiniDump folder (/MiniDumpFolder parameter) 2 -> Load from all computers specified in the computer list file. (/ComputersFile parameter) 3 -> Load from a single MiniDump file (/SingleDumpFile parameter) |
/MiniDumpFolder <Folder> | Start BlueScreenView with the specified MiniDump folder. |
/SingleDumpFile <Filename> | Start BlueScreenView with the specified MiniDump file. (For using with /LoadFrom 3) |
/ComputersFile <Filename> | Specifies the computers list filename. (When LoadFrom = 2) |
/LowerPaneMode <1 — 3> |
Start BlueScreenView with the specified mode. 1 = All Drivers, 2 = Only Drivers Found In Stack, 3 = Blue Screen in XP Style. |
/stext <Filename> | Save the list of blue screen crashes into a regular text file. |
/stab <Filename> | Save the list of blue screen crashes into a tab-delimited text file. |
/scomma <Filename> | Save the list of blue screen crashes into a comma-delimited text file (csv). |
/stabular <Filename> | Save the list of blue screen crashes into a tabular text file. |
/shtml <Filename> | Save the list of blue screen crashes into HTML file (Horizontal). |
/sverhtml <Filename> | Save the list of blue screen crashes into HTML file (Vertical). |
/sxml <Filename> | Save the list of blue screen crashes into XML file. |
/sort <column> |
This command-line option can be used with other save options for sorting by the desired column. If you don’t specify this option, the list is sorted according to the last sort that you made from the user interface. The <column> parameter can specify the column index (0 for the first column, 1 for the second column, and so on) or the name of the column, like «Bug Check Code» and «Crash Time». You can specify the ‘~’ prefix character (e.g: «~Crash Time») if you want to sort in descending order. You can put multiple /sort in the command-line if you want to sort by multiple columns.
Examples: |
/nosort | When you specify this command-line option, the list will be saved without any sorting. |
Translating BlueScreenView to other languages
In order to translate BlueScreenView to other language, follow the instructions below:
- Run BlueScreenView with /savelangfile parameter:
BlueScreenView.exe /savelangfile
A file named BlueScreenView_lng.ini will be created in the folder of BlueScreenView utility. - Open the created language file in Notepad or in any other text editor.
- Translate all string entries to the desired language.
Optionally, you can also add your name and/or a link to your Web site.
(TranslatorName and TranslatorURL values) If you add this information, it’ll be
used in the ‘About’ window. - After you finish the translation, Run BlueScreenView, and all translated
strings will be loaded from the language file.
If you want to run BlueScreenView without the translation, simply rename the language file, or move
it to another folder.
License
This utility is released as freeware.
You are allowed to freely distribute this utility via floppy disk, CD-ROM,
Internet, or in any other way, as long as you don’t charge anything for this.
If you distribute this utility, you must include all files in
the distribution package, without any modification !
Disclaimer
The software is provided «AS IS» without any warranty, either expressed or implied,
including, but not limited to, the implied warranties of merchantability and fitness
for a particular purpose. The author will not be liable for any special, incidental,
consequential or indirect damages due to loss of data or any other reason.
Feedback
If you have any problem, suggestion, comment, or you found a bug in my utility,
you can send a message to nirsofer@yahoo.com
BlueScreenView is also available in other languages. In order to change the language of
BlueScreenView, download the appropriate language zip file, extract the ‘bluescreenview_lng.ini’,
and put it in the same folder that you Installed BlueScreenView utility.
Language | Translated By | Date | Version |
---|---|---|---|
Arabic | Fcmam5 | 23/02/2013 | 1.47 |
Brazilian Portuguese | cslibraga | 20/02/2016 | 1.10 |
Bulgarian | Евгений Кабакчиев | 05/06/2015 | 1.55 |
Czech | Pavel Konečný | 04/01/2015 | 1.52 |
Danish | Gustav Brock | 15/01/2011 | 1.30 |
Dutch | Jan Verheijen | 03/02/2015 | 1.55 |
Farsi | Hamed Babaei (ÍÇãÏ ÈÇÈÇíí) | 18/03/2014 | 1.52 |
Finnish | S. J. Liimatainen | 03/06/2020 | 1.55 |
French | EtoileFilante® Corp. | 24/08/2015 | 1.55 |
French | Eric FICHOT | 27/07/2013 | 1.52 |
French | xb70walkyrie [v. 1.55] | 31/07/2016 | |
German | «Latino» auf WinTotal.de | 29/01/2015 | 1.55 |
Greek | geogeo.gr | 11/10/2014 | 1.52 |
Hungarian | Timinoun | 12/12/2022 | 1.55 |
Italian | Roberto B.WSS | 14/05/2015 | 1.55 |
Italian | Daniele Cultrera & bovirus | 01/04/2014 | 1.52 |
Japanese | iLEƒÖEj | 17/07/2013 | 1.52 |
Korean | J. K. Lee(Wave) | 04/02/2015 | 1.55 |
Latvian | Nizaury | 15/01/2012 | 1.45 |
Persian | Shadima.com | 26/04/2020 | 1.55 |
Polish | Wojciech Sabaj | 25/06/2012 | 1.45 |
Polish | Tomasz Janiszewski | 04/08/2009 | 1.00 |
Romanian | Jaff (Oprea Nicolae) | 08/05/2015 | 1.55 |
Russian | Dmitry Posunko && Dm.Yerokhin | 21/01/2016 | 1.55 |
Simplified Chinese | CuiPlaY | 14/03/2013 | 1.47 |
Simplified Chinese | EaiLFly | 28/01/2012 | 1.45 |
Simplified Chinese | Edison Chen | 27/05/2014 | 1.52 |
Slovak | Fero Fico | 29/01/2015 | 1.55 |
Slovenian | Darko Kenda | 22/01/2014 | 1.52 |
Spanish | Amadeo García Torrano | 07/05/2020 | 1.55 |
Swedish | Bernt Janhäger | 06/08/2012 | 1.45 |
Swedish | Tommy Kellerman | 29/03/2011 | 1.32 |
Traditional Chinese | 發夢 King | 04/08/2009 | 1.00 |
Traditional Chinese | 丹楓(虫二電氣診所) | 08/10/2013 | 1.52 |
Turkish | Saner Apaydin | 16/03/2010 | 1.20 |
Turkish | HARUN ARI | 16/09/2011 | 1.40 |
Ukrainian | Lembergman, August 2017 | 19/08/2017 | 1.5.5.0 |
Ukrainian | vmsoft77 | 20/11/2013 | 1.52 |
Valencian | vjatv | 25/08/2009 | 1.05 |
Want to know what causes your computer to crash and show Blue Screen of Death (BSoD)? You can use dedicated free software to analyze crash dump reports in Windows 11/10. In this article, I am going to mention the best free crash dump analyzer software that you can use on Windows 11/10.
Whenever your computer runs into an error and crashes, a minidump file (.dmp) is created at a default location i.e., C:\Windows\MiniDump. If not, you can configure Windows to create Crash Dump Files on Blue Screen. These free software read the minidump files and analyze the cause of the crash. You can view the module or driver that possibly caused the blue screen. A detailed report with error code, exception, file information, and more is also displayed in these software. Some software on this list show application and process crash report. You can export the crash dump analysis report in a file to share or view later.
Here is a list of free crash dump analyzer software available for Windows 11/10:
- BlueScreenView
- WhoCrashed
- Windbg
- AppCrashView
- WinCrashReport
Find out details on these below!
1] BlueScreenView
BlueScreenView is a free crash dump analyzer software for Windows 11/10. It is used to analyze BSoD and minidump files. You can view minidump files using it and the reasons that caused your PC to crash. It fetches all minidump files from the default location. You can change this location or browse and import a crash dump file from a custom location.
It shows various information regarding a crash. You can view crash time, the driver that most probably caused the crash, bug check code, crash address, file description, file version, 4 crash parameters, and more. You can export an HTML report of selected or all information related to a crash.
This software comes in a portable package.
Read: What are System Error Memory Dump Files in Windows.
2] WhoCrashed
WhoCrashed is a crash dump analyzer software for Windows 10. You can download its home edition which is available for free.
It fetches and loads crash reports from default minidump files’ location. You can start importing all the crash dump files by clicking on the Analyze button. You can select the number of crash reports you want to view using Options. The crash report is shown in the Report tab. You can locate the latest or whichever minidump file you want to analyze and then view the respective information in this section.
It shows crash reports including information like errors, bug check code, bug check description, the module that possibly caused the crash, file path, product, company, and more. It provides a web link to errors, so you can view details about an error on the web. There is also a Conclusion section at the end of the Report tab where a summary of all crashes is displayed along with tips to avoid crashes. You can find a Crash Dump Test feature to manually crash your computer for testing.
It is useful freeware for analyzing crash dump reports. You can even export the report to an HTML document.
3] Windbg
Windows Debugger Tool (Windbg) is another free crash dump analyzer software for WIndows 10. This debugging tool is a part of the Windows Software Development Kit (SDK) package. While installing this package, simply choose the Debugging Tools for Window feature to install, and then you will be able to use it.
You can import a minidump file from your PC by using its File > Open Crash Dump option. There is this button called !analyze -v in the prompt; click on it. It will then display a detailed crash report that includes faulty driver information, exception error, exception code, dump qualifier, faulting IP, failure ID hash string, and more. Overall, it is a good minidump file analyzer for Windows 11/10.
4] AppCrashView
AppCrashView is a crash dump analyzer for applications on Windows 10. It basically shows a dump report for the crashed application using Windows Error Reporting (.wer) files. You can view a list of processes that crashed with information like fault modules and version, exception code, event name, event time, etc. You can click on a process and then view a detailed crash report for the same. The crash report can be saved as a CSV, HTML, TXT, or XML file.
5] WinCrashReport
WinCrashReport is a freeware to show reports on crashed processes and applications in Windows 10. You can check which application crashed and why. It displays the crash address, crash code bytes, exception code, exception address, product name, file version, strings in the stack, modules list, full-stack data, etc. Using this information, you can analyze the cause of application crashes.
If needed, you can save the crash report in HTML or plain text file. The good thing is that it is portable and requires no installation. Just run the downloaded application file and view crash reports.
Related reads:
- Windows Memory Dump Settings
- Physical Memory Limits in Crash Dump files.
BlueScreenView
для Windows
BlueScreenView — небольшая бесплатная утилита, которая сканирует все файлы аварийных дампов памяти и отображает информацию о всех сбоях в сводной таблице. Для каждого сбоя предоставляется масса полезной для пользователя информации, как например имя файла дампа, дата/время сбоя, базовые сведения, выводимые на экран во время BSOD и сведения о драйвере/модуле, который привел к сбою.
Также программа позволяет просматривать список загруженных драйверов, в котором отмечаются те драйверы, которые были найдены в стеке минидампа, что дает возможность обнаружить драйвер, вызвавший критическую ошибку.
Основные возможности:
- Выяснение причин сбоя системы.
- Отображение подробной информации об ошибке.
- Вывод данных о драйверах.
- Экспорт информации в файл, сохраненный в формате: TXT, HTML, HTM, XML, CSV.
- Поиск информации в интернете по готовым шаблонам.
- Поддержка режима перетаскивания.
- Поддержка командной строки.
- Русификатор интерфейса (2 Кб)
ТОП-сегодня раздела «Мониторинг»
MSI Afterburner 4.6.5
MSI Afterburner — настоящая находка для истинного оверклокера, с помощью которой можно…
SpeedFan 4.52
SpeedFan — бесплатный и удобный в использовании инструмент для контроля за температурой и…
Speccy 1.33.079
Speccy — небольшая бесплатная программа, позволяющая узнать массу полезной информации об…
HWMonitor 1.57
HWMonitor — бесплатная утилита для мониторинга параметров работы различных компонентов ПК,…
Quick CPU 4.10.0
Бесплатная, но очень мощная программа, разработанная для настройки и мониторинга…
Отзывы о программе BlueScreenView
Stanmay про BlueScreenView 1.55 [13-03-2016]
Из архива русификатора извлекаем файл и копируем его в папку с программой. И все, прога русифицирована.
48 | 37 | Ответить
мишка про BlueScreenView 1.52 [15-09-2013]
закинуть в папку с прогой
48 | 30 | Ответить
ieheg про BlueScreenView 1.52 [26-08-2013]
Русификатор есть на сайте программы — http://www.nirsoft.net/utils/trans/bluescreenview_russian.zip
31 | 41 | Ответить
виктор про BlueScreenView 1.47 [04-05-2013]
как русифицироваь эту хрень
43 | 67 | Ответить