← All Documentation

Blue Screen Analyzer

Translates the cryptic Windows crash code into plain English and points you toward the likely cause.

What is a BSOD?

The infamous Blue Screen of Death (formally called a Stop Error) is what Windows shows when it hits a problem so serious it has to shut down rather than risk data corruption. The sad-face screen usually shows a STOP code like IRQL_NOT_LESS_OR_EQUAL or a hex number like 0x0000007E. Those names are meaningful to kernel developers but mean nothing to most people.

Blue Screen Analyzer reads the records Windows keeps of past BSODs and tells you, in plain language, what each one means and what commonly causes it.

Where the data comes from

Windows records BSODs in two places:

TuneBit reads both and correlates them so you get a full picture.

What you'll see

For each crash, the analyzer shows:

Common BSODs and what they usually mean

How to investigate a crash

  1. Go to Diagnose → Blue Screen Analyzer.
  2. Click the most recent crash in the list.
  3. Read the description. It'll suggest one of three possible culprits: a driver, a hardware component, or a Windows file.
  4. If it blames a driver: open the Driver Manager and check for updates.
  5. If it blames hardware: run your system manufacturer's diagnostics, and check for heat / overclocking.
  6. If it blames system files: run SFC and DISM from the System Repair Tools page.
  7. Click Open Minidump Folder to view dump files. If you want deep analysis, WinDbg or BlueScreenView can crack the minidump open.
One-off vs. pattern: A single BSOD months ago is usually not worth chasing. A pattern of the same STOP code happening weekly is what you want to investigate. Sort the list by STOP code and look for repeats.
No minidump? Windows sometimes crashes so hard it can't finish writing a dump file. You'll see the event log entry but no .dmp. The STOP code alone is still useful for pointing at the general category of problem.