Antivirus Real Time Scan Eating 100% Disk? Fix It Now

Cybersecurity & Malware Intermediate 👁 12 views 📅 Jun 23, 2026

Antivirus real-time scanning can lock up your disk at 100%. These steps stop the madness fast.

Why Your Antivirus Is Beating Up Your Disk

I know this error is infuriating. You're trying to work, and your PC sounds like a jet engine. The disk usage sits at 100% in Task Manager. And there it is: Antimalware Service Executable or your third-party antivirus eating everything. This usually happens after a Windows update (like Windows 10 22H2 or Windows 11 23H2) or when your antivirus runs a scan on a drive that's nearly full—less than 10% free space makes it go crazy.

But here's the thing: you don't always need to uninstall the antivirus. Let's walk through the fixes, from a 30-second tweak to a 15-minute deep clean. Stop when you're happy.

30-Second Fix: Switch to Passive or Low-Resource Mode

This is the quickest test. Most modern antivirus programs have a setting to lower CPU and disk usage. It’s usually tucked in the settings, but it works.

For Windows Defender (Built-in)

  1. Open Windows Security from the Start menu.
  2. Click Virus & threat protection.
  3. Under Virus & threat protection settings, click Manage settings.
  4. Turn off Real-time protection for 5-10 seconds, then turn it back on. This refreshes the scan schedule and often drops the disk usage back to normal.

If that doesn't help, go a step further:

  1. In the same window, scroll to Exclusions.
  2. Click Add or remove exclusions.
  3. Add exclusions for the folders you use most—like C:\Users\YourName\Documents, C:\Users\YourName\Desktop, and C:\Program Files. This stops Defender from scanning them again and again.

For Third-Party Antivirus (Norton, McAfee, Avast, etc.)

  1. Open the antivirus dashboard.
  2. Look for Game Mode, Silent Mode, or Resource Saver. Enable it.
  3. If you can't find that, dig into Scan Settings and set it to Low priority or Background.

This fix works about 60% of the time. If disk usage is still at 100%, move to the next step.

5-Minute Fix: Disable Real-Time Scanning Temporarily (But Do It Smart)

Sometimes the antivirus is just too aggressive. You don't want to turn it off forever, but a temporary pause can confirm the problem. Here's how to do it without leaving yourself exposed.

For Windows Defender

  1. Press Windows Key + R, type powershell, and right-click to run as Administrator.
  2. Copy and paste this command:
Set-MpPreference -DisableRealtimeMonitoring $true

This turns off real-time monitoring until you restart your PC.

  1. Check your disk usage. If it drops below 10%, you've found the culprit.
  2. To turn it back on manually, run:
Set-MpPreference -DisableRealtimeMonitoring $false

Or just restart your computer.

For Third-Party Antivirus

  1. Right-click the antivirus icon in the system tray (near the clock).
  2. Select Pause protection or Disable until next restart.
  3. Pick a short time like 15 minutes or 1 hour. Again, check disk usage.

Important: If you pause protection, don't go browsing shady websites or opening email attachments. You're vulnerable. But this test is worth it.

If disabling real-time scanning fixes the disk issue, you need to ask yourself: Is this antivirus actually needed? Windows Defender is pretty good for most people. I'd ditch the third-party one if it's causing this much trouble.

15+ Minute Fix: Clean Out the Antivirus and Reconfigure It

Okay, the simple stuff didn't work. Now we go deeper. This usually means the antivirus has a corrupted update, a stuck scan process, or something in the OS is fighting it.

Step 1: Run a Full Disk Check

Your antivirus might be going crazy because the disk has errors. Open a Command Prompt as Administrator and run:

chkdsk C: /f /r

You'll be asked to schedule it for next restart. Type Y and reboot. This can take 30 minutes to an hour, but it fixes a lot of hidden disk issues.

Step 2: Reset Windows Defender (If That's Your Antivirus)

  1. Open Windows Settings (Windows Key + I).
  2. Go to Update & Security > Windows Security > Open Windows Security.
  3. Click App & browser control > Reputation-based protection settings.
  4. Turn off Check apps and files, SmartScreen for Microsoft Edge, and SmartScreen for Microsoft Store apps. These can cause extra disk thrashing.

Also, clear the Defender cache:

cd C:\ProgramData\Microsoft\Windows Defender\Scans\History\Service

Delete everything in that folder. Don't worry, Defender rebuilds it.

Step 3: Kill the Third-Party Antivirus Completely (And Switch to Defender)

This is the nuclear option, but I've seen it work wonders. If your antivirus is from a company like Norton or McAfee, use their dedicated removal tool. Don't just uninstall from Control Panel—that leaves leftovers.

Run the tool, reboot, and then let Windows Defender take over. It's built into Windows, uses less disk, and is updated automatically. I've been using Defender for 5 years with no issues. You'll be fine.

Step 4: Check for a Corrupted System File

If disk usage is still high after all that, Windows itself might be corrupted. Run these two commands in an Administrator Command Prompt:

DISM /Online /Cleanup-Image /RestoreHealth

Then:

sfc /scannow

Let both finish. The first one downloads clean system files, the second one replaces bad ones. This can take 20 minutes but fixes a lot of weird behavior.

When to Just Give Up and Reinstall Windows

Look, if you've done all this and the disk still hits 100% when you open a browser, it might be time for a clean install. Back up your files, use Microsoft's Media Creation Tool, and start fresh. It takes 2 hours, but it's the only way to guarantee no leftover crap is dragging your system down.

I hope this helped. You're not alone—this bug has been around since Windows 10. But with these steps, you should get your PC back to normal.

Was this solution helpful?