Yes. A USB drive is not the only next step.
Since the system can still reach Windows Recovery Environment, try the built-in recovery tools first:
- Open Windows RE.
- Try Startup Repair.
- If the problem started after recent changes, try Uninstall Updates.
- If a restore point exists, try System Restore.
- If those fail, open Command Prompt in Windows RE.
For rebuilding boot files, the supported recovery path is:
- Mount the EFI system partition:
mountvol s: /s - Recreate the boot files:
Replacebcdboot <OSDrive>:\windows /s S: /f ALL<OSDrive>with the actual Windows partition letter seen in recovery.
If the BCD store exists but has wrong or missing entries, back it up first, then correct it:
bcdedit /export C:\temp\bcdbackup
Then use bcdedit /set {identifier} option value to correct entries, or if the BCD store cannot be opened or is missing, run:
bootrec /rebuildbcd
Important: deleting everything under S:\ is risky because it removes EFI boot files. If that deletion already happened, bcdboot is the documented way to recreate them. If commands report files are in use, run them from Windows RE Command Prompt, not from the normal running Windows session.
If boot files are still missing after that, and Windows RE recovery options all fail, the remaining documented option is to reinstall Windows by using recovery or installation media.
If Windows starts again afterward, run:
sfc /scannow
This checks for and repairs missing or corrupted protected system files.
References: