My C: drive randomly reaches 100% active time, which causes programs to freeze or crash. It can happen while gaming, browsing, or doing nothing specific, and a hard reset temporarily fixes it before the problem returns hours later.
Running CHKDSK reports that the volume bitmap is incorrect and that Windows found file-system problems, but `chkdsk /scan` says no problems were found. What could be causing this, and what diagnostics or repairs should I try?
4 Answers
Look for background services that may be generating constant disk activity, such as SysMain or a stuck cloud-sync process. Temporarily stopping SysMain or pausing synchronization can help identify whether one of them is responsible. Also check how much free space is left, since Windows needs room for temporary files and virtual memory.
Run CHKDSK while the volume is offline so it can repair the file system properly. Open an Administrator Command Prompt and run `chkdsk C: /f`, then restart when prompted. The repair may run during boot; afterward, check whether the errors return.
First check Task Manager or Performance Monitor to identify which process is actually saturating the drive. Since CHKDSK reported a volume bitmap problem, the drive itself could be failing. Back up important files and check the disk’s SMART health with a reputable drive-monitoring tool.
That makes sense. I’ll check which process is responsible and verify the drive health before the problem gets worse.
Other possibilities include heavy paging if the system is low on memory, outdated storage drivers, or a hardware problem. Check the drive’s SMART data and transfer speed, update storage drivers, and test the RAM as well. Reseating the memory or running a dedicated memory test can help rule out faulty RAM.

I ran the offline repair and it completed during startup. CHKDSK then reported no remaining problems, so I’ll keep monitoring it.