Posted by: berkscompsltd - 13 June 2024 13:17:33 |
---|
bcdboot c:\windows /s b: /f UEFI gives BFSVC Error: Could not open the BCD template Store. Status = [c0000000f] What does that mean? |
Posted by: berkscompsltd - 17 June 2024 12:08:01 |
---|
I had to completely rebuild the boot files by using diskpart to make the UEFI partition again: [code=bash]DISKPART SEL DISK 0 SEL PART 1 LIST VOL[/code] Where I selected the 100MB UEFI partition which was showing as RAW [code=bash]SEL VOL 1[/code] in my case anyway but check which is your system 100MB UEFI volume [code=bash]ASSIGN LETTER="B:" FORMAT B: /FS:FAT EXIT[/code] and then assigning it as the b: drive and using: [code=bash]bcdboot c:\windows/s b: /f UEFI[/code] and then [code=bash]bootrec /scanos [/code] and it found the installation and I was then able to boot. |