Question

Difficulty: MediumTroubleshooting Windows OS Startup and Boot Errors

A system administrator encounters a 'Missing operating system' error message upon starting a legacy BIOS-based desktop computer with a Master Boot Record (MBR) partition scheme. After booting into the Windows Recovery Environment (WinRE) Command Prompt, the administrator confirms that all storage drives and system partitions are physically healthy and detected. Which command-line entry should the administrator execute first to overwrite the corrupted boot code on the system partition without altering existing partition tables?

  1. bootrec /fixmbrAnswer
  2. B
    bootrec /fixboot
  3. C
    bootrec /rebuildbcd
  4. D
    sfc /scannow

Answer

The administrator should run bootrec /fixmbr to overwrite the corrupted Master Boot Record code on the system partition without affecting existing partitions.
Executing bootrec /fixmbr writes a Master Boot Record compatible with the installed Windows operating system to the system partition. This directly resolves 'Missing operating system' errors caused by corrupted MBR code without modifying or wiping existing partition tables.

Step-by-Step Solution

1
Analyze the error symptom and system architecture
The symptom 'Missing operating system' on a legacy BIOS/MBR system indicates that the system BIOS loaded the MBR code, but the MBR code itself is corrupted or invalid and cannot locate/hand off control to the active partition boot sector.
Identifying legacy MBR boot stages narrows down the necessary repair utility to bootrec switches targeting the master boot code.
2
Evaluate bootrec repair switches
The switch /fixmbr writes an MBR-compatible master boot code to the system partition without altering partition tables.
This directly fixes the damaged MBR bootstrap code while preserving partition layout and volume structures.

Key Concept

Troubleshooting Windows OS Startup and Boot Errors using bootrec switches
Estimated Time:1m 15s
Rate this question