Open Forem

Cover image for How to fix: “less than 1MB free space" Warning
K-kibet
K-kibet

Posted on

How to fix: “less than 1MB free space" Warning

If your Windows laptop is showing “less than 1MB free space” even though you’re sure there’s plenty of storage, here are possible causes and how to fix them:


🔍 1. Wrong Drive is Being Reported

Check which drive is showing that warning:

  • It could be a recovery partition, system reserved partition, or external drive with very little space.

Fix:

  • Open File Explorer → This PC and look at each drive’s actual free space.
  • Don’t worry if small system partitions are nearly full — that’s normal.

⚙️ 2. File Explorer or Storage Info Glitch

Sometimes Windows misreports space due to a glitch or outdated cache.

Fix:

  • Restart your laptop.
  • Then go to Settings → System → Storage to see the real breakdown.
  • Or run:
  wmic logicaldisk get name,freespace,size
Enter fullscreen mode Exit fullscreen mode

in Command Prompt to view free space per drive.


🛠️ 3. Hidden Files or System Files Taking Up Space

Space may be used by:

  • Pagefile, hiberfil.sys, System Restore points, Windows Update Cache, or Temporary files.

Fix:

  • Open Disk Cleanup:

    • Search for Disk Cleanup in Start.
    • Select your drive and clean up System files.
  • Or use:

  cleanmgr /sageset:1
  cleanmgr /sagerun:1
Enter fullscreen mode Exit fullscreen mode

🐛 4. Corrupted Disk or File System

Corruption can make Windows think the drive is full.

Fix:
Run CHKDSK:

chkdsk C: /f
Enter fullscreen mode Exit fullscreen mode

It may ask to restart — allow it.


🧪 5. Malware or Disk-Filling Bugs

Some malware or faulty apps fill your drive with logs or junk files.

Fix:

  • Run a scan with Windows Defender or Malwarebytes.
  • Check %TEMP% folder and delete everything in it.

🧰 Useful Tools

  • Use WinDirStat or TreeSize Free to see where your storage is going visually.

Top comments (0)