when Windows 7 tries to "check disk for consistency" on startup, can I make it wait more than 10 seconds?

2

like, how about making it count down 3600 seconds to make sure that I have time to tell it to take a hike? How does it know to wait for precisely 10?

EndangeringSpecies

Posted 2012-03-07T01:06:12.367

Reputation: 593

Answers

3

Answer here

Quote:

  1. Start Registry Editor (Regedit32.exe) and locate the following subkey:
    \HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager
  2. Add the following information:
    Value Name: AutoChkTimeOut Data Type: DWORD Value: The value in units of seconds (for example, a value of 60 equals 1 minut

The autochk.exe count down time is controlled by the following registry entry:
\HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager \AutoChkTimeOut

If the entry is not found, the default count down of 10 seconds will be used. If it is set to 0 second, there will not be any count down. If it is set to more than 3 days (259,200 seconds), the default value will be used.

Kaurin

Posted 2012-03-07T01:06:12.367

Reputation: 685

yes, that worked fine for me on Windows 7. thanks – EndangeringSpecies – 2012-03-07T16:10:26.207

2

Looks like there is a registry entry that controls it.

Modifying the Disk Check Autochk.exe Time-out (Scandisk Delay) Value from 10 seconds to 3 Seconds

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager]
"AutoChkTimeOut"=dword:00000003

That info is for XP, it might work on 7. Have not tried it myself.

LawrenceC

Posted 2012-03-07T01:06:12.367

Reputation: 63 487