💻 Fix 100% Disk Usage in Task Manager (CMD Guide)
💻 Fix 100% Disk Usage in Task Manager (CMD Guide)
If your Task Manager shows Disk Usage at 100%, your laptop will feel extremely slow, freeze randomly, and apps will take forever to open.
This guide gives you real fixes using CMD — step by step.
🔍 Step 1: Disable Superfetch (SysMain)
Run Command Prompt as Administrator:
net.exe stop sysmain
sc config sysmain start=disabled
This service often causes high disk usage on HDD systems.
🔧 Step 2: Disable Windows Search
net.exe stop "Windows Search"
sc config "WSearch" start=disabled
Stops constant indexing that overloads disk.
🔧 Step 3: Check Disk Errors
chkdsk C: /f /r
Fixes bad sectors and disk corruption (restart required).
🔧 Step 4: Repair System Files
sfc /scannow
Repairs broken Windows files causing abnormal disk usage.
🔧 Step 5: Advanced Repair
DISM /Online /Cleanup-Image /RestoreHealth
Fixes deeper system image issues.
🔧 Step 6: Reset Virtual Memory
Run:
systempropertiesadvanced
Go to Performance → Advanced → Virtual Memory and reset it.
⚠️ Important: If disk usage stays at 100%, your hard drive may be failing or too slow (common in HDD laptops).
💡 Pro Tip: Switching from HDD to SSD will instantly eliminate most 100% disk usage issues.
Comments
Post a Comment