0

When scandisk is scheduled to run before login, it runs in a special blue screen. What is this special mode, does it have a name?

Do other programs run in this blue screen, or is it only for scandisk?

enter image description here

Edit: In the answer of my other question (the one which sparked this actually), they mentioned WinInit and WinLogon. Is that how that mode is called?

sashoalm
  • 4,260

1 Answers1

1

There is a multistring registry key that controls the execution of system programs at boot:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\BootExecute

By default this key is populated with:

autocheck autochk *

When chkdsk is called to run on the C: drive, the command is modified to include:

autocheck autochk /p \??\C:

Other applications other than chkdsk can be run, such as filesystem converters, boot time defragmenters, and rootkit cleaners.

Richie Frame
  • 1,980