How to Cancel the “Scanning and Repairing Drive” Process During Boot
Dealing with the “scanning and repairing drive” screen during startup? Yeah, that can be a total nightmare. It’s like watching paint dry but on a huge scale, and honestly, it’s frustrating because sometimes that process just hangs there for ages, or worse, the system gets stuck in a loop. At some point, you’re probably thinking, “How do I stop this thing before it leaks all my patience?”
From what I’ve experienced, Windows’ disk check runs basically to find and fix file system errors or bad sectors, especially after improper shutdowns – like power outages or crashes. But it’s not always smooth sailing. Sometimes it stalls, maybe because of corrupt sectors, disk issues, or some weird glitch. If you’re stuck here, the first thing to try is killing that process. If you get a prompt that says “Press any key to cancel the disk check,” do it quick—pressing any key in time often aborts the scan. If you’re fast enough, your system will skip the longer check and try booting normally.
Once you manage to get into Windows after that, it’s worth running some more thorough checks. Just be aware, canceling a disk check forcibly isn’t risk-free—sometimes it can lead to data corruption if underlying issues aren’t addressed. But if you’re stuck in a cycle or can’t even get into Windows at all, that’s when you need to go deeper into recovery options. Here’s where it gets tricky and depends on your system, BIOS, or UEFI menu.
Boot into Advanced Startup Options & Use Command Prompt
If the prompt to cancel isn’t showing, or you missed it because the system moved on, don’t worry. You can still get to the recovery environment. The general method I found most reliable is either using a recovery drive, Windows installation media, or forcing the PC into recovery mode manually:
-
Using a USB or DVD recovery drive: Drop in your Windows installer or recovery media, restart the PC, and hit the key that lets you select boot device—this could be F12, Esc, Del, or another depending on your motherboard brand. Then, select the USB or DVD as boot device, choose “Repair your computer,” go to Troubleshoot > Advanced options > Command Prompt. If that media isn’t prepared, you’ll need to create one using Microsoft’s Media Creation Tool or Rufus, which is a lifesaver if the system refuses to boot normally.
-
Force recovery if Windows won’t load normally: Power off your PC forcibly a few times by holding down the Power button during startup. After a few tries, Windows might automatically boot into the recovery environment showing “Automatic Repair” or “Preparing Automatic Repair.” When that happens, go to Advanced options > Command Prompt. It’s not guaranteed this will work the first time, but persistence pays off.
Once inside Command Prompt, you can execute commands like chkntfs /x C:
to stop Windows from scheduling automatic disk checks on your system drive (usually C:). This command is helpful if a scheduled check is causing delays or hangs. But be careful—incorrect use of disk management tools like diskpart
can cause real trouble. So, make sure you understand what each command does before running it.
Rescheduling a Disk Check — Better Safe Than Sorry
If you manage to cancel the bad check, it’s smart to set up a proper, clean disk check later. Sometimes Windows doesn’t automatically prompt you to run one, but you can do it manually:
Head over to This PC (or “My Computer”), right-click your drive, select Properties, and click the Tools tab. Hit Check under the Error checking section. If you see a prompt asking to schedule a check on restart, click Yes. When you restart, Windows will run chkdsk in a controlled environment, fixing issues before Windows loads. Alternatively, from an elevated Command Prompt, you can run chkdsk /f /r C:
(assuming C:\ is your drive). This fixes errors (-f) and scans for bad sectors (-r). Keep in mind, this can take hours depending on your disk size or damage, so plan accordingly.
Using PowerShell for Volume Repair (More Advanced)
If Windows is stable enough, or after fixing things via recovery, you might try PowerShell’s Repair-Volume
cmdlet. Open PowerShell as an administrator—press Win + X and choose Windows PowerShell (Admin), or just use Windows Terminal if you prefer. Then run:
Repair-Volume -DriveLetter C
Replace C
with the relevant drive letter if yours is different. This command performs a smart, thorough check of the filesystem. I’ve used it as a softer alternative to chkdsk, especially after system repairs. Just keep in mind that it needs Windows to be operational—so if your system can still boot, that’s the right time to try this. It can still be a lengthy process, so patience is key.
All in all, dealing with a stuck “scanning and repairing” message is a nerve-wracking experience, especially if your system refuses to move past that wall. Sometimes, a mix of quick cancel attempts, booting into recovery, and command-line checks is what finally gets the system back. My advice? Don’t panic—try the simple options first, then escalate if needed. And always, always, back up your important data regularly because disk issues tend to strike worst right before a weekend or a big project. Better safe than sorry, right?
Hope this helps—this whole mess cost me way more sleep than I’d like to admit. Good luck, and remember, patience is key. These errors are cryptic, but with some perseverance, they can usually be beaten.