Windows 10 Boot Recovery or Not
I woke on the morn of Good Friday to find the PC at the BIOS screen with a CPU overheat error. Despite the CPU fan being listed as spinning at 1800RPM, the CPU was cooking along at 75deg or so..
Time for a shutdown and vacuum out the dust. Something I’ve done routinely in the past, but this time it all went wrong. On starting the system again…. it didn’t.
After an extremely frustrating sequence of reboots, BIOS setting review, recovery USB key creation I think what happened was that I managed to clear the motherboard BIOS settings. Given that my boot disk was still a pair of Seagate Barracuda’s in Intel RAID1 (mirror), I think that this also was the primary cause of my subsequent inability to boot. That I had installed a SSD for Windows 10 system when I did a clean install (after the original Win7 to Win10 upgrade), was a cause of additional confusion.
Additional complications included building a windows system restore USB key (on another Win10 system), and trying to use the startup repair (available under system recovery menu). Also I think at some point I ran a Linux install-mbr utility. I also ran
bootsect /nt60 ALL / force bootrec /fixbmbr bootrec /fixboot bootsec /scanos bootrec /rebuildbcd
The RAID pair were an original MBR partion table, and the new SSD a GPT. From a hardware perspective the Asus P8P67 Pro included a 6Gbps SATA Marvel 9120 interface that I am fairly certain are addressable by UEFI BIOS, but not in the early start sequence of the Win10 kernel boot.
Finally, by the time all this had been tried, I ended up with an SSD that had a Microsoft Reserved Partition (16MB), an EFI system partition that was in fact relabelled data partition with my Win10 system in it (200GB or so), and a Recovery partition (500MB or so). At this stage, bootsect /scanos was no longer finding the Windows system install, although in some circumstances is it was located in a path like /?/Volume3/….
So how did I ultimately resolve?
- Made the decision to get the SSD bootable and abandon the RAID pair to start.
- Rebuilt the partitions on the SSD broadly following this with
- boot from windows recovery and run command prompt
-
diskpart
-
list disk
-
select disk X
-
list partition
-
select partition 2 (the "EFI" partition that wasn't)
-
setid EBD0A0A2-B9E5-4433-87C0-68B6B72699C7
-
shrink desired=200
-
create partition EFI size=200
-
format quick fs=fat32 label="System"
-
exit
-
bootrec /fixboot
-
bcdboot c:\windows /s b: /f ALL
- (Or maybe I ran bootrec /rebuildbcd later.Initially the fact that I was still plugged into the Marvell SATA meant that step (M) was failing).