Skip to content

Instantly share code, notes, and snippets.

@pizofreude
Created May 26, 2025 06:51
Show Gist options
  • Save pizofreude/476f02d7c4618be4b85c830bb8a6c898 to your computer and use it in GitHub Desktop.
Save pizofreude/476f02d7c4618be4b85c830bb8a6c898 to your computer and use it in GitHub Desktop.
How to check whether BIOS system support UEFI or not

Windows check whether your system supports UEFI by following these steps:

  1. Press Win + R, type msinfo32, and hit Enter.
  2. In the System Information window, look for BIOS Mode.
  3. If it says UEFI, your laptop supports it! If it says Legacy, it does not.

Rufus

For UEFI supported system, we can opt to GPT for partition scheme. Otherwise, choose MBR.

@pizofreude
Copy link
Author

Alternative way to check GPT or MBR

  1. Go to Disk Management: Right-click on Windows Start button, select Disk Management
  2. Go to Disk 0 or which ever your current c: drive where your existing OS is installed, right-click on it and select Properties
  3. Go to Volume tab, and check the Partition style: it will state either GPT or MBR.

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment