Question

Difficulty: MediumTroubleshooting Windows OS Startup and Boot Errors

A technician is using the Command Prompt in the Windows Recovery Environment (WinRE) to repair a legacy BIOS/MBR system that fails to boot after unexpected disk corruption. Place the following boot recovery commands in the correct sequential order to repair the Master Boot Record, partition boot sector, scan for Windows installations, and rebuild the boot configuration data.

  1. 1Execute bootrec /fixmbr to overwrite corrupted Master Boot Record code on the system partition.
  2. 2Execute bootrec /fixboot to write a new partition boot sector onto the active system partition.
  3. 3Execute bootrec /scanos to locate installed Windows operating systems not currently listed in the BCD.
  4. 4Execute bootrec /rebuildbcd to rebuild the Boot Configuration Data store and add detected Windows installations.

Answer

The correct sequence begins with repairing the Master Boot Record (bootrec /fixmbr), followed by writing a new boot sector (bootrec /fixboot), scanning for Windows installations (bootrec /scanos), and finally rebuilding the Boot Configuration Data (bootrec /rebuildbcd).
The recovery process must logically proceed from low-level disk structures to higher-level OS configuration stores. First, bootrec /fixmbr fixes the disk's Master Boot Record. Second, bootrec /fixboot repairs the active partition boot sector. Third, bootrec /scanos identifies installed Windows systems. Fourth, bootrec /rebuildbcd reconstructs the Boot Configuration Data database and adds missing Windows entries.

Step-by-Step Solution

1
Repair the MBR code
System partition MBR code is replaced with compatible Windows boot code.
The MBR contains the master boot code executed by legacy BIOS to find the active partition.
2
Repair the Partition Boot Sector
A new boot sector compatible with the Windows system is written.
The partition boot sector is called by the MBR to locate and run bootmgr.
3
Scan for OS installations
All disks are scanned for Windows installations compatible with the current OS.
Scanning identifies valid OS entries that need to be cataloged for boot loading.
4
Rebuild the BCD Store
The Boot Configuration Data store is completely rebuilt and updated.
Rebuilding the BCD incorporates identified OS installations into the boot menu choices.

Key Concept

Sequential repair of Windows legacy boot components using bootrec switches in WinRE
Rate this question