Dear @Lechner, Rob,
Thank you for posting your question in the Microsoft Q&A forum.
We apologize for any inconvenience you may encounter when using our services/ products. Based on your description, kindly try these following steps:
Break the automatic repair loop (WinRE)
- Enter the BitLocker key when asked > when “Diagnosing your PC” appears, press Power to interrupt and force Advanced options. If you only see the countdown page, let it finish once, then as soon as it reboots press Shift + F8 (or hold power 10s twice) to reach Choose an option.
- Go to Troubleshoot > Advanced options > Command Prompt.
- In the console, run:
bcdedit /set {default} recoveryenabled No
bcdedit /set {default} bootstatuspolicy IgnoreAllFailures
- This stops Auto Repair from re‑triggering at boot and lets us see the real failure.
- Restart > if it now boots normally, re‑enable recovery later:
bcdedit /set {default} recoveryenabled Yes
bcdedit /set {default} bootstatuspolicy DisplayAllFailures
Repair system files and disk
- Go to Troubleshoot > Advanced options > Command Prompt
chkdsk C: /f /r
sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows
DISM /Image:C:\ /Cleanup-Image /RestoreHealth
- Restart and test.
Rebuild the boot loader (BCD)
- If the loop persists, still in Command Prompt:
bootrec /fixmbr
bootrec /fixboot
bootrec /scanos
bootrec /rebuildbcd
- If access is denied on /fixboot, run:
bcdboot C:\Windows /f UEFI
- Restart.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.