0X0000028C

Fixing 0X0000028C: Driver Database Error on Windows 10/11

A corrupted driver store or a broken update cache triggers this Blue Screen. Two quick fixes: clear the driver cache or run DISM.

1. Corrupted Driver Cache (DriverStore) — the real culprit 90% of the time

What's actually happening here is that Windows keeps a local copy of every driver you've ever installed inside C:\Windows\System32\DriverStore\FileRepository. When that cache gets a single corrupt file — maybe from a failed update or a forced shutdown — the system can't read the driver database next time it boots. You see the 0X0000028C error.

This usually happens after you install a new GPU driver or a Windows update that interrupted halfway. The exact scenario: you're installing NVIDIA driver 546.17, the power dies, and next boot shows a blue screen with this error.

The fix is to delete the corrupted driver cache and let Windows rebuild it. Here's how:

  1. Boot into Safe Mode. Hold Shift while clicking Restart, then go to Troubleshoot > Advanced options > Startup Settings > Restart. Press 4 for Safe Mode.
  2. Open Command Prompt as Administrator (right-click Start).
  3. Run this command to see what's in the driver store:
    pnputil /enum-drivers
  4. Look for any driver marked "Published" with a date right before the crash. Note its oemXX.inf number.
  5. Delete the offending driver package:
    pnputil /delete-driver oemXX.inf
    Replace oemXX.inf with the actual number.
  6. If you can't find a specific one, nuke the whole cache (last resort):
    del /f /s /q C:\Windows\System32\DriverStore\FileRepository\*.*
  7. Reboot normally. Windows will rebuild the driver store from the built-in drivers.
Why step 6 works: Deleting the FileRepository folder forces Windows to regenerate the database from the original driver packages stored in C:\Windows\System32\DriverStore\. It's safe because Windows keeps a backup. But you'll lose any manufacturer-specific drivers (like from Dell or Lenovo) — you'll need to reinstall those.

2. Corrupted System Files (SFC / DISM) — the second biggest cause

Sometimes the driver database itself isn't broken — it's the system files that manage the database. A damaged drvmain.sdb or driver.stl file can cause the same error. This happens after a Windows update that didn't finish properly, or if you used a system cleaner that deleted something it shouldn't.

The fix here is to repair the system image first, then scan system files. This order matters — don't skip it.

  1. Boot into Safe Mode again (same steps as above).
  2. Open Command Prompt as Administrator.
  3. First, repair the Windows image (this fixes the source files that SFC uses):
    DISM /Online /Cleanup-Image /RestoreHealth
    Let it run — it takes 10-20 minutes. It downloads fresh files from Windows Update.
  4. After it finishes, run the System File Checker:
    sfc /scannow
  5. If SFC finds corrupt files it can't fix, run DISM again with a local source:
    DISM /Online /Cleanup-Image /RestoreHealth /Source:C:\RepairSource\Windows /LimitAccess
    You need a Windows installation media (USB or ISO) mounted as C:\RepairSource. If you don't have one, skip this — try the first fix again.
  6. Reboot.
Why DISM before SFC: SFC needs clean source files to replace corrupted ones. If the component store (WinSxS) is damaged, SFC will fail or make things worse. DISM repairs that store first.

3. Manual driver rollback from Windows Recovery — when you can't even boot to Safe Mode

If the error shows up immediately and you can't reach Safe Mode, you're stuck at the blue screen. This usually happens when a driver update applied during the last shutdown got corrupted. The system tries to load it, fails, and crashes before you can do anything.

The fix: use the Windows Recovery Environment (WinRE) to roll back the driver.

  1. Force shutdown your PC three times: hold the power button down until it turns off, turn it on, and when you see the spinning dots, hold the power button again. Do this three times. On the fourth boot, WinRE should appear.
  2. Go to Troubleshoot > Advanced options > Command Prompt.
  3. Find the offending driver:
    pnputil /enum-drivers
    Look for drivers added recently (check the date column).
  4. Roll back by deleting the driver package:
    pnputil /delete-driver oemXX.inf /uninstall
  5. If you don't know which one, disable driver signing enforcement temporarily:
    bcdedit /set {default} testsigning on
    Then reboot. This lets Windows ignore driver signature checks, which sometimes bypasses the corruption. After booting, run DISM and SFC from normal Windows.
  6. Once you're in Windows, don't forget to turn off test signing:
    bcdedit /set {default} testsigning off
Why test signing works: Driver database corruption often shows up as a signature validation failure. Test signing mode skips that check entirely. It's a band-aid, not a fix — use it only to get back into Windows.

Quick-reference summary table

CauseFixWhen to use
Corrupted driver cacheDelete FileRepository folder or specific OEM driverAfter failed driver install or power loss
Corrupted system filesDISM then SFC (in that order)After bad Windows update or system cleaner
Can't boot to Safe ModeWinRE > pnputil delete driver or enable testsigningImmediate crash on boot, no recovery options

Most people I've helped fix this with step 1 — clearing the driver cache. It's fast, it's safe, and it solves the root cause. Don't waste time reinstalling Windows until you've tried these three things.

Related Errors in Database Errors
0X00001A2C Fix ERROR_INVALID_TRANSACTION (0X00001A2C) in SQL Server & NTFS 0X00002121 0X00002121: Active Directory Search Attribute Fail Fix 0X000003F1 Fix ERROR_BADDB (0X000003F1) Registry Corrupt SQL Server TempDB Full SQL Server TempDB Full: Fix It Without Restarting

Was this solution helpful?

EP
Erropedia Team
Tech Support Editors
The Erropedia editorial team researches and documents real-world tech errors from across Windows, Linux, macOS, networking, databases, cloud platforms, and more. Every solution is reviewed for accuracy and updated as software and systems evolve.