How to Fix the MEMORY_MANAGEMENT Blue Screen Error

Windows 11BSODTroubleshootingFix

The Problem

Your PC crashes to a blue screen with the stop code MEMORY_MANAGEMENT (technical code 0x0000001A). It may happen randomly, under heavy load like gaming, or increasingly often over time.

This stop code means Windows detected a serious error in how memory is being handled. The most common physical cause is failing RAM, but faulty drivers, corrupted system files, an unstable RAM overclock (XMP/EXPO), and even a failing SSD can trigger the same crash. The steps below go from most likely to least likely.

Quick Checks Before You Start

  1. Did you recently add or reseat RAM? Power off, unplug, and make sure the sticks are fully clicked into their slots.
  2. Did you enable XMP/EXPO or overclock recently? Enter BIOS and disable it temporarily — unstable memory profiles are a classic trigger.
  3. Crashing constantly? Boot into safe mode first so you can work: see how to enter Safe Mode in Windows 11.

Step 1: Run Windows Memory Diagnostic

Test whether your RAM itself is failing.

  1. Press Win + R, type mdsched.exe, and press Enter.
  2. Choose Restart now and check for problems.
  3. Your PC reboots into a memory test that takes several minutes. Let it complete both passes.
  4. After Windows restarts, the result appears as a notification. You can also find it in Event Viewer > Windows Logs > System (look for MemoryDiagnostics-Results).

If errors are found, you almost certainly have a failing RAM stick. With two or more sticks, test them one at a time in the same slot to identify the bad one, then replace it. For a more thorough test, the free tool MemTest86 (run from a USB drive) catches errors Windows Memory Diagnostic misses.

Step 2: Update or Roll Back Drivers

A buggy driver corrupting memory produces the same stop code as bad hardware.

  1. Right-click Start > Device Manager.
  2. Update your display adapter driver first — GPU drivers are the most frequent software cause. Download directly from NVIDIA, AMD, or Intel.
  3. If the crashes started right after a driver update, roll it back instead: right-click the device > Properties > Driver tab > Roll Back Driver.
  4. Also update chipset drivers from your motherboard or laptop manufacturer's support page. Our guide to updating outdated drivers covers this safely.

Step 3: Repair Corrupted System Files

  1. Right-click Start > Terminal (Admin).
  2. Run:
    sfc /scannow
    
  3. Then run:
    DISM /Online /Cleanup-Image /RestoreHealth
    
  4. Restart your PC. The full procedure is in repair Windows 11 system files with SFC and DISM.

Step 4: Check Your Disk and Page File

The page file extends RAM onto your drive — if the drive is failing, memory errors follow.

  1. In Terminal (Admin), run:
    chkdsk C: /f /r
    
    Schedule it for the next restart when prompted, then reboot.
  2. Check drive health with the steps in check SSD and hard drive health.
  3. Reset the page file: Settings > System > About > Advanced system settings > Performance Settings > Advanced > Virtual memory Change — check Automatically manage paging file size for all drives.

Step 5: Undo Overclocks and Update BIOS

  1. In BIOS/UEFI, load Optimized Defaults to clear any memory overclock or XMP/EXPO profile.
  2. If your system is stable afterward, the profile was unstable — try a lower speed or update your BIOS, since memory compatibility fixes ship in BIOS updates regularly.

If the blue screens continue after RAM tests pass and drivers are current, save your files and consider reinstalling Windows without losing data to rule out deep OS corruption.

Getting different stop codes each time? Random, changing stop codes strongly suggest hardware (RAM or PSU). Start with the general blue screen troubleshooting guide. Related codes: CRITICAL_PROCESS_DIED and KERNEL_SECURITY_CHECK_FAILURE.