Hello mga ka-PHC!
Ever turn on your computer and get stuck on that blue screen saying it's "Scanning and Repairing Drive C:"? This is the Windows Check Disk utility, or
This tutorial will show you how to disable it. Let's get started!
Quick Warning
Before we begin, it's important to understand why Check Disk runs. It usually happens after an improper shutdown (like a power outage or forcing your PC off) or if your hard drive might actually have some issues.
Disabling it is like ignoring your car's "check engine" light. It stops the annoyance, but it might hide a real problem. It's best to let it run completely at least once. If it keeps happening, you might want to check your hard drive's health.
Method 1: Using the Command Prompt (The Easy Way)
This is the fastest and safest method. You're telling Windows to exclude a specific drive from being automatically checked at startup.
You can disable the check for multiple drives at once. Just list them in the command like this:
How to Re-enable Check Disk?
If you want to turn the automatic check back on, you can restore the default settings.
I hope this guide helps you out! Stay safe and happy computing!
~NJNS2022
Ever turn on your computer and get stuck on that blue screen saying it's "Scanning and Repairing Drive C:"? This is the Windows Check Disk utility, or
chkdsk. While it's a useful tool for fixing disk errors, sometimes it can run on every single boot-up, which can be very annoying, especially when you're in a hurry.This tutorial will show you how to disable it. Let's get started!
Quick WarningBefore we begin, it's important to understand why Check Disk runs. It usually happens after an improper shutdown (like a power outage or forcing your PC off) or if your hard drive might actually have some issues.
Disabling it is like ignoring your car's "check engine" light. It stops the annoyance, but it might hide a real problem. It's best to let it run completely at least once. If it keeps happening, you might want to check your hard drive's health.
Method 1: Using the Command Prompt (The Easy Way)
This is the fastest and safest method. You're telling Windows to exclude a specific drive from being automatically checked at startup.
- Open Command Prompt as an Administrator.
Click the Start Menu, typecmd, then right-click on "Command Prompt" and select "Run as administrator". - Type the Command.
To disable the automatic check for your C: drive, type the following command and press Enter:chkntfs /x C:chkntfsis the command to check an NTFS drive./xtells Windows to exclude or disable the automatic check.C:is the drive letter.
- Done!
That's it. The next time you restart, Windows should skip the disk check for that drive.
You can disable the check for multiple drives at once. Just list them in the command like this:
chkntfs /x c: d: e:How to Re-enable Check Disk?
If you want to turn the automatic check back on, you can restore the default settings.
- Open Command Prompt as an Administrator again.
- Type this command and press Enter:
chkntfs /d
The/dswitch restores the machine to its default behavior.
I hope this guide helps you out! Stay safe and happy computing!

~NJNS2022