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?
- 1Execute bootrec /fixmbr to write a compatible Master Boot Record to the system partition.
- 2Execute bootrec /fixboot to write a new boot sector onto the system partition.
- 3Execute bootrec /scanos to scan all connected drives for compatible Windows installations.
- 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
Key Concept
Bootrec Command Sequence for Legacy Windows Recovery
Estimated Time:1m 30s