An IT support technician is troubleshooting a Windows 10 computer that fails to boot following an improper shutdown. Upon starting, the system displays the error message "The Boot Configuration Data for your PC is missing or contains errors. Error code: 0xc000000f." The technician boots into the Windows Recovery Environment (WinRE) Command Prompt and attempts to repair the boot configuration by running `bootrec /rebuildbcd`. The command identifies the `C:\Windows` installation, but when attempting to add it to the boot list, it fails with the error message "The requested system device cannot be found." Further inspection using `diskpart` reveals that the system drive utilizes GUID Partition Table (GPT) formatting with an unlettered FAT32 EFI System Partition (ESP). Which of the following commands should the technician execute NEXT to successfully repair the boot files?
- Use `diskpart` to assign a drive letter to the EFI System Partition, exit `diskpart`, and execute `bcdboot C:\Windows /s S: /f UEFI` to regenerate the BCD store and boot configuration files.Cevap
- BExecute `bootrec /fixmbr` followed by `bootrec /fixboot` to overwrite the Master Boot Record and re-establish the primary boot sector.
- CRun `sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows` to repair corrupted operating system binaries in the Windows component store.
- DExecute `bootsect /nt60 SYS /force /mbr` to force-update the master boot code on the active system partition.