Question

Difficulty: MediumTroubleshooting Windows OS Startup and Boot Errors

A technician is troubleshooting a legacy BIOS-based Windows workstation that fails to boot, displaying the error message 'Operating System not found'. After booting into the Windows Recovery Environment (WinRE) and opening the Command Prompt, in what sequence should the technician execute the Bootrec utility commands to manually repair the boot loader infrastructure?

  1. 1Execute bootrec /fixmbr to write a compatible Master Boot Record to the system partition.
  2. 2Execute bootrec /fixboot to write a new boot sector onto the system partition.
  3. 3Execute bootrec /scanos to scan all connected drives for compatible Windows installations.
  4. 4Execute bootrec /rebuildbcd to rebuild the Boot Configuration Data store and re-add detected operating systems.

Answer

The correct sequence to repair legacy Windows startup boot loader infrastructure using the Bootrec utility is: 1) bootrec /fixmbr, 2) bootrec /fixboot, 3) bootrec /scanos, 4) bootrec /rebuildbcd.
In a legacy MBR boot troubleshooting context, recovery follows a hierarchical repair sequence. First, the Master Boot Record is restored (/fixmbr) to establish disk-level boot code. Next, the partition boot sector is written (/fixboot) to enable partition loading. Then, all disks are scanned (/scanos) to locate compatible Windows installations missing from the boot configuration. Finally, the Boot Configuration Data store is rebuilt (/rebuildbcd) to register the operating system installations into the boot manager menu.

Step-by-Step Solution

1
Run bootrec /fixmbr in WinRE Command Prompt.
Writes a master boot record compatible with Windows to the system partition without overwriting the existing partition table.
Resolves basic MBR corruption issues before addressing partition boot sector logic.
2
Run bootrec /fixboot in WinRE Command Prompt.
Writes a new boot sector to the system partition using a boot sector compatible with the installed Windows OS.
Fixes corrupted or non-standard partition boot sectors after the MBR is validated.
3
Run bootrec /scanos in WinRE Command Prompt.
Scans all connected storage drives for operating systems compatible with Windows and reports any entries not listed in the BCD.
Verifies which installations are available for inclusion before initiating the rebuild process.
4
Run bootrec /rebuildbcd in WinRE Command Prompt.
Rebuilds the Boot Configuration Data (BCD) store and prompts to add the discovered OS installations.
Completes the boot repair process by restoring missing boot entries to the BCD store.

Key Concept

Bootrec Command Sequence for Legacy Windows Recovery
Estimated Time:1m 30s
Rate this question