How to Disable Chkdsk at Startup in Windows 7


How to Disable chkdsk at Startup in Windows 7 : Steps to Follow
- First of all You need to Open Cmd (Command Prompt) as an Administrator.You can Open it Directly by typing cmd in RUN Dialog Box
- Type the Following Commands
- chkntfs /x c: – If you Want to Disable Chkdsk on Drive Cchkntfs /x d: – If You Want to Disable Chkdsk on Drive DHence You can Disable Chkdsk on Any Drive at Start-up by Using the Above Command and Using that Drive Letter Name with the Command
- Press Enter and You are all Done
Restore the Default Option – Enable Chkdsk Again
If you want to Restore the Chkdsk Option again at Start-up You can Try the Following Commands to Enable Chkdsk at Startup in Windows 7- First of all You need to Open Cmd (Command Prompt) as an Administrator
- Type the Following Command
chkntfs /D – To Restore the Default Behavior of Drives - Press Enter and You are all Done
- or
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager
In the right hand pane, double click BootExecute.
The default value of the key is autocheck autochk *
* means every drive is checked for consistency. Just add /K:C at the end before *. /K switch will disable autocheck on C: drive at Windows startup. So the final value should look like this:
autocheck autochk /k:C *
If you want to add more drives, the key should look like this: (disabling C and D drives)
autocheck autochk /k:C /k:D *
If you want to restore everything to default, just replace the key with the default one i.e.
autocheck autochk *