How to Fix the “100% Disk Usage” Error in Task Manager

There’s nothing quite as frustrating as trying to open a basic folder, only for your computer to freeze up completely. You press Ctrl+Shift+Esc, look at the Task Manager, and there it is: the dreaded 100% Disk Usage painted in bright red.

I’ve troubleshot this specific issue on hundreds of machines. It’s almost never a virus. It’s usually a glitch in how Windows handles background indexing or virtual memory. Here is exactly how to fix it.

Fix 1: Disable the SysMain (Superfetch) Service

SysMain (formerly called Superfetch) tries to preload the apps you use most often into memory. However, on many systems, it goes into overdrive and thrashes your disk constantly.

  1. Press the Windows Key + R to open the Run box.
  2. Type services.msc and press Enter.
  3. Scroll down the list until you find the service named SysMain.
  4. Right-click on it and select Properties.
  5. Change the Startup type drop-down to Disabled.
  6. Click the Stop button underneath the service status.
  7. Click Apply, then OK. Restart your computer and check Task Manager again.

Fix 2: Reset Your Virtual Memory (Pagefile)

When you run out of RAM, Windows uses your storage drive as temporary memory (the pagefile). If this file gets corrupted, disk usage spikes to 100%.

  1. Press the Windows key, type Advanced system settings, and hit Enter.
  2. Under the Performance section, click Settings.
  3. Go to the Advanced tab and click Change… under Virtual memory.
  4. Uncheck the box at the top that says Automatically manage paging file size for all drives.
  5. Select your C: drive, click Custom size.
  6. Set both Initial size and Maximum size to the recommended amount listed at the bottom of that window.
  7. Click Set, then OK, and restart your PC.

Fix 3: Turn Off Windows Search Indexing Loop

Sometimes, the Windows Search indexer gets caught in a loop, repeatedly scanning the same files.

  1. Open the Start menu, type cmd, right-click Command Prompt, and select Run as administrator.
  2. Type the following command exactly as written: net.exe stop “Windows search”
  3. Press Enter.

Check your Task Manager. If the disk usage drops immediately, you know Windows Search was the problem. You can permanently disable it in the services.msc menu, just like we did with SysMain.

FAQ

Is 100% disk usage a sign that my hard drive is dying?

It can be, but it’s usually a software issue. However, if you are still using a mechanical Hard Disk Drive (HDD) instead of a Solid State Drive (SSD), 100% usage is very common on Windows 10 and 11. Upgrading to an SSD is the only permanent hardware fix in that scenario.

Leave a Comment