How to test whether Windows 10 was installed with UEFI?

I need to decide whether it is more straightforward to create a bootable Ubuntu drive in UEFI or standard BIOS. I do not want to create or install it through any more ambiguous route than necessary because I have experience with accidentally installing one on the other's environment.

6

3 Answers

Open the System Information Utility (Win Key + "R" > "msinfo32" > OK)

In system summary, look for "BIOS MODE".


Alternatively, check Disk manager. If you have a partition on your disk for "EFI system partition" then you are using UEFI. If you only have system reserved and C:, its probably BIOS.


Hope one of these helps

1

You can also use Windows Panther directory logs:

type C:\Windows\Panther\setupact.log|find /i "Detected boot environment"

Extracted from:

1

Open the file C:/Windwos/Panther/setupact.log (.log is maybe hidden)

Then search for (Strg+F) Detected boot environment:

If you find

Detected boot environment: BIOS

then its BIOS, if you find

Detected boot environment: EFI

then its UEFI.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like