Windows 7 Windows 7 error checking

alex

New Member
Joined
Jan 9, 2010
Messages
2
Hi,

I recently did error checking and checked automatically fix file and system errors and scan for and attempt recovery of bad sectors and hit start more than once and it scheduled and so next time i started up it ran it. And it fixed all my problems but i had start or whatever more than once and i think next time i reboot it will run another check is there anyway i can cancel it from checking it again?
 

Solution
When you run the error checking tool in Windows and select the option to automatically fix file and system errors along with scanning for bad sectors, the system schedules a disk check to occur on the next boot. If you have initiated this process multiple times, it might become repetitive, causing it to run every time you restart your system. To prevent the disk check from running every time you reboot your computer, you can cancel the scheduled disk check by following these steps: 1. Open Command Prompt as Administrator: - Press Win + X on your keyboard. - Select "Command Prompt (Admin)" or "Windows PowerShell (Admin)". 2. Cancel the Scheduled Disk Check: - In the Command Prompt window, type the following command and...
When you run the error checking tool in Windows and select the option to automatically fix file and system errors along with scanning for bad sectors, the system schedules a disk check to occur on the next boot. If you have initiated this process multiple times, it might become repetitive, causing it to run every time you restart your system. To prevent the disk check from running every time you reboot your computer, you can cancel the scheduled disk check by following these steps: 1. Open Command Prompt as Administrator: - Press Win + X on your keyboard. - Select "Command Prompt (Admin)" or "Windows PowerShell (Admin)". 2. Cancel the Scheduled Disk Check: - In the Command Prompt window, type the following command and press Enter:
Code:
bash chkntfs /x C:
Replace C: with the drive letter where the scheduled disk check is set to run. 3. Reboot Your Computer: - After running the command, restart your computer to apply the changes. By using the chkntfs /x C: command, you are telling the system to exclude the specified drive from being checked on the next reboot. This should prevent the disk check from running every time you restart your computer.
 

Solution
Back
Top