Hello,
Is your boot drive formatted to GPT?
Fix: Computer won't boot after enabling Secure Boot (kapilarya.com)
Also you may try to update the BIOS version to check.
If a FAT32 partition for EFI boot is missing, you will need to create one. This can be done using a disk partitioning tool such as Disk Management or a third-party tool like GParted. Here’s a general procedure:
a. Boot your computer using a Windows installation USB or DVD.
b. When you reach the installation screen, press Shift + F10 to open the command prompt.
c. Type the following commands:
diskpart (opens the DiskPart utility)
list disk (displays the list of disks on your computer)
select disk X (X represents the disk number where you want to create the partition)
clean
convert gpt (converts the disk to GPT partition style)
create partition efi size=200 (creates a 200 MB EFI system partition)
format quick fs=fat32 label=“EFI” (formats the partition as FAT32 with the label “EFI”)
list partition (verifies that the partition was created successfully)
exit (exits DiskPart)
d. Close the command prompt and continue with the installation.
Please note back up the important files before modifying the disk configuration.
Best Regards,
Hania Lian
============================================
If the Answer is helpful, please click "Accept Answer" and upvote it.