Hello
“when I needed to access the BIOS, it wouldn't let me”
What did this symptom look like? Usually the biso is seprate from operating system. We can get into bios even we didn't have any operating system.
If I understood the issue correctly, we want to fix the boot partition of the Windows system. If I misunderstood, please feel freel to let me know that. We could try the following steps:
- Boot into WinRE mode. Press shift then reboot or just boot with an installation media, choose "install" then choose "Repair your computer". Once boot into WinRE, then choose "troubleshoot", "Advanced options", choose the "command prompt".
- Then input "diskpart"
"list volume"
You will get the drive letter of all the volumes. Recognize the system drive letter based on the partition size. Or you could type "notepad" then try to open something from "File“ option”. You will get all the drive letter UI just like an explorer UI.
- Type "exit" to exit the diskpart command UI.
- Type "bootrec /scanos", it will scan all the drives for any possible windows installation drive. If you got one, you can type "bcdboot C:\Windows" (suppose the C: is the windows drive).
If it won't return any result, you can try to type "bcdboot C:\windows" directly then check if it can create the boot partition correctly (the C: is based on the result of step 2)
Hope my suggestions will be helpful!