ERRORBlue screen0x00000154

UNEXPECTED_STORE_EXCEPTIONStop code 0x00000154

UNEXPECTED_STORE_EXCEPTION (stop code 0x00000154) is raised by the Windows store manager component and commonly indicates a storage or memory problem, or a faulty display driver, rather than the Microsoft Store app. Checking the drive health, testing RAM and updating the graphics driver address most cases.

BlackhawkHub Editorial · Updated

What it means

UNEXPECTED_STORE_EXCEPTION, bug check 0x00000154, comes from the Windows store manager, an internal memory-management component. The name misleads: it has nothing to do with the Microsoft Store application. In practice this stop code correlates strongly with storage and memory hardware problems and, sometimes, display drivers.

Most likely causes

  • A failing or error-prone drive, especially an aging SSD; check SSD health.
  • Faulty RAM.
  • An outdated or buggy graphics driver.
  • Corrupted system files.

Fixes

1. Check the drive. Read its SMART health with CrystalDiskInfo or the vendor tool, and run:

cmd
chkdsk C: /f /r

If health is degraded or errors appear, back up and plan to replace the drive.

2. Test memory. Run Windows Memory Diagnostic (mdsched.exe) or MemTest86 overnight. Errors mean a bad module.

3. Update the graphics driver from the GPU vendor, and roll back if the crashes started after a driver update.

4. Repair system files:

cmd
DISM /Online /Cleanup-Image /RestoreHealth
sfc /scannow

General blue-screen approach

Most stop codes are caused by drivers, hardware faults, or corrupted system files, in that order of likelihood. The efficient path is:

  1. Note what changed. A new driver, a Windows update, new hardware, or an overclock immediately before the crashes began is the prime suspect. Roll it back or remove it.
  2. Boot to Safe Mode if Windows will not stay up: hold Shift and restart, or interrupt boot three times to reach the recovery environment, then Troubleshoot → Advanced options → Startup Settings → Safe Mode.
  3. Update or roll back drivers, especially graphics, storage and chipset, from the vendor rather than only Windows Update.
  4. Repair system files from an elevated prompt:
cmd
DISM /Online /Cleanup-Image /RestoreHealth
sfc /scannow
  1. Test hardware: Windows Memory Diagnostic for RAM, the drive vendor's tool and chkdsk for storage, and check temperatures.
  2. Read the dump. The minidump in C:\Windows\Minidump names the faulting driver when analysed with WinDbg or a tool like BlueScreenView.

Frequently asked questions

Does UNEXPECTED_STORE_EXCEPTION mean the Microsoft Store?

No. Despite the name, the "store" is an internal Windows memory/store manager component, not the Microsoft Store app. The error typically points to storage or memory hardware, or a display driver.

How do I fix UNEXPECTED_STORE_EXCEPTION?

Check the drive's SMART health and run chkdsk; test RAM with Windows Memory Diagnostic; update the graphics driver from the vendor; and repair system files with DISM and sfc. If the drive shows wear or errors, back up and replace it.

Sources