0x0000001A

Fixing Windows Stop Code MEMORY_MANAGEMENT (0x0000001A)

Windows Errors Intermediate 👁 1 views 📅 May 29, 2026

The MEMORY_MANAGEMENT blue screen usually means bad RAM or driver conflicts. Here's how to fix it step-by-step without guessing.

1. Faulty RAM — The Most Common Cause

Nine times out of ten, this error comes from bad memory modules. It might show up when you're gaming, running a video edit, or just staring at the desktop. The system tries to read or write to a memory address that doesn't exist or fails a consistency check, and boom — blue screen with MEMORY_MANAGEMENT.

Here's what to do first, because it's free and takes 20 minutes:

  1. Press the Windows key, type Windows Memory Diagnostic, and hit Enter.
  2. Click Restart now and check for problems (recommended). Your PC will reboot.
  3. After restart, you'll see a blue screen with a progress bar. Let it run. It takes 10–15 minutes. It'll test each stick of RAM in multiple passes.
  4. When it finishes, Windows boots normally. To see results: right-click the Start button, go to Event ViewerWindows LogsSystem. Click Filter Current Log and for Event sources, pick MemoryDiagnostics-Results. Click OK. You should see event ID 1101 (pass) or 1102 (fail).

If it reports errors: You've got bad RAM. The fix is to swap the stick. If you have two or more sticks, remove all but one, test, then swap them one by one until you find the bad one. Run the diagnostic again after each swap. For laptops with soldered RAM, you're looking at a motherboard replacement — but try driver fixes below first, because sometimes the test gives false positives.

2. Corrupted System Files or Drive Errors

If the memory test passes clean, the next suspect is Windows itself. Corrupted system files — from a bad update, a drive that's starting to fail, or a power outage during a write — can trigger MEMORY_MANAGEMENT when the OS can't properly manage virtual memory pages.

Here's the fix, in the right order:

  1. Open Command Prompt as administrator (search cmd, right-click, Run as administrator).
  2. Run sfc /scannow and wait for it to finish. It'll replace any corrupted protected system files. Expect it to take 5–15 minutes depending on your drive speed.
  3. After that, run DISM /Online /Cleanup-Image /RestoreHealth. This fixes the system image that SFC relies on. It downloads clean files from Windows Update. If you're offline, it'll still work using local files, but it's slower.
  4. Reboot — you should see a normal boot. If not, move to the next step.
  5. Check the hard drive for errors. In the same admin Command Prompt, run chkdsk C: /f /r. It'll say the drive is in use and ask to schedule it for next reboot. Type Y and press Enter, then restart. Let it run — this can take an hour on a large or slow drive. It scans the file system for logical errors and bad sectors.

3. Outdated or Conflicting Drivers — Especially GPU and Storage

Sometimes the error surfaces right after a driver update, or after installing new hardware. I've seen it most often with graphics card drivers (NVIDIA, AMD, Intel) and storage drivers (NVMe, SATA, or RAID). A stale driver can mishandle memory allocation, and Windows catches it with a 0x0000001A stop code.

Skip generic driver update tools — they're usually garbage and can break things. Instead:

  1. Press Win + XDevice Manager.
  2. Expand Display adapters. Right-click your GPU, select Update driverSearch automatically for drivers. If Windows finds nothing, check the GPU manufacturer's site directly (NVIDIA or AMD) for the latest driver for your model and Windows version. For Intel graphics, use their driver assistant tool.
  3. Next, expand Storage controllers. If you see any with a yellow warning icon, right-click and Update driver. For modern NVMe drives, check your motherboard or laptop manufacturer's support site for the latest storage driver — often called "chipset driver" or "IRST driver" for Intel systems.
  4. If the error started after a specific driver update, you can roll back: right-click the device in Device Manager → PropertiesDriver tab → Roll Back Driver. This undoes the last update but keeps your other changes.
  5. Reboot after each driver change. Test with a few minutes of normal use before declaring victory.

Still crashing? Boot into Safe Mode (hold Shift while clicking Restart in the Start menu, then Troubleshoot → Advanced options → Startup Settings → Restart → press 4). If the error doesn't appear in Safe Mode, you've got a driver conflict — likely a third-party antivirus, virtual network adapter, or a weird audio driver. Use msconfig to do a clean boot: search msconfig, go to Services tab, check Hide all Microsoft services, click Disable all, reboot. If stable, re-enable services one group at a time until the error returns.

Quick-reference summary
CauseFixTakes
Bad RAMRun Windows Memory Diagnostic; replace faulty stick20 min test + swap time
Corrupted system files/drivesfc /scannow, DISM, chkdsk C: /f /r15–60 min
Driver conflict/outdatedUpdate GPU/storage drivers; roll back if needed; clean boot10–30 min

Was this solution helpful?