How to Create UEFI Bootable USB Drive on Windows 10

WBOY
Release: 2024-08-02 01:59:35
Original
1179 people have browsed it

This article will present you with a detailed tutorial on how to create a UEFI bootable USB drive on Windows 10.

How to Create UEFI Bootable USB Drive on Windows 10


  • How to Create UEFI Bootable USB Drive on Windows 10
  • Part 1: Download and Mount Windows 11 ISO File
  • Part 2: Using DiskPart Tool to Initialize the USB Drive
  • Part 3: Create UEFI Bootable USB Drive
  • What's the Difference between UEFI and BIOS Bootable USB?

How to Create UEFI Bootable USB Drive on Windows 10

Part 1: Download and Mount Windows 11 ISO File

Step 1: Visit Windows 11 download page. From there, locate Download Windows 11 Disk Image (ISO) for x64 devices, then select a version and click Download Now.

How to Create UEFI Bootable USB Drive on Windows 10

Step 2: Select a language sand click Confirm, then click 64-bit Download.

How to Create UEFI Bootable USB Drive on Windows 10

Step 3: After the successful download, locate the file and then double-click on it, mounting the ISO file.

How to Create UEFI Bootable USB Drive on Windows 10

Step 4: Once mounted, it will be assigned a drive letter automatically. Here is the letter G.

How to Create UEFI Bootable USB Drive on Windows 10

Part 2: Using DiskPart Tool to Initialize the USB Drive

Note:

  • In the next two sections (Part 2 & Part 3), you must press Enter after each command line.

Step 1: Connect your USB drive, upwards of 8GB, to the computer.

Step 2: Type "cmd" on the search bar, then select Run as administrator. If a UAC (User Account Control) pop-up appears, click Yes to proceed.

How to Create UEFI Bootable USB Drive on Windows 10

Step 3: Type diskpart.

How to Create UEFI Bootable USB Drive on Windows 10

Step 4: Here, you've accessed DISKPART. Then type list disk and all available disks will be displayed on the screen.

How to Create UEFI Bootable USB Drive on Windows 10

Step 5: Type select disk 1<code style="background-color: rgb(227, 227, 227);">select disk 1. It is noted that here the USB driver is disk 1, which needs to be replaced with your own disk letter.

How to Create UEFI Bootable USB Drive on Windows 10

Step 6: Type clean<code style="background-color: rgb(227, 227, 227);">clean to format the USB driver.

How to Create UEFI Bootable USB Drive on Windows 10

Step 7: Type convert gpt<code style="background-color: rgb(227, 227, 227);">convert gpt to convert the disk format.

How to Create UEFI Bootable USB Drive on Windows 10

Step 8: Type create partition primary size=1000, which creates a primary partition and its size is 1000MB.

How to Create UEFI Bootable USB Drive on Windows 10

Step 9: Type format quick fs=fat32 label="WinPE".

How to Create UEFI Bootable USB Drive on Windows 10

Step 10: Type assign letter="S"<code style="background-color: rgb(227, 227, 227);">assign letter="S".

How to Create UEFI Bootable USB Drive on Windows 10

Step 11: Type create partition primary.

How to Create UEFI Bootable USB Drive on Windows 10

Step 12: Type format quick fs=ntfs label="Install".

How to Create UEFI Bootable USB Drive on Windows 10

Step 13: Type assign letter="W"<code style="background-color: rgb(227, 227, 227);">assign letter="W".

How to Create UEFI Bootable USB Drive on Windows 10

Step 14: Type list volume<code style="background-color: rgb(227, 227, 227);">list volume.

How to Create UEFI Bootable USB Drive on Windows 10

Step 15: Type list disk<code style="background-color: rgb(227, 227, 227);">list disk.

How to Create UEFI Bootable USB Drive on Windows 10

Step 16: Type exit<code style="background-color: rgb(227, 227, 227);">exit to exit the Diskpart tool.

How to Create UEFI Bootable USB Drive on Windows 10

Part 3: Create UEFI Bootable USB Drive

Step 1: Type robocopy G: S: /e /zb /MT:16 /xf "G:sourcesinstall.wim" "G:sourcesboot.wim".

How to Create UEFI Bootable USB Drive on Windows 10

Step 2: Type Dism /Get-ImageInfo /ImageFile:"G:sourcesboot.wim".

How to Create UEFI Bootable USB Drive on Windows 10

Step 3: Type Dism /Export-Image /SourceImageFile:"G:sourcesboot.wim" /SourceIndex:1 /DestinationImageFile:"S:sourcesboot.wim" /Bootable.

How to Create UEFI Bootable USB Drive on Windows 10

Step 4: Type robocopy G: W: /e /zb /MT:16 /xf "G:sourcesboot.wim".

How to Create UEFI Bootable USB Drive on Windows 10

Step 5: After the successful copy, open File Explore and you will find that you have successfully created a UEFI bootable USB drive.

How to Create UEFI Bootable USB Drive on Windows 10

What's the Difference between UEFI and BIOS Bootable USB?

In short, UEFI bootable USB drive can be seen as an upgraded version of a BIOS bootable USB drive. Here are some differences between them:

  • UEFI replaces the traditional BIOS.
  • UEFI is more intuitive and user-friendly than BIOS.
  • UEFI booting is faster compared to BIOS.
  • Enabling UEFI requires motherboard support.
  • UEFI supports 64-bit Windows 7.
  • UEFI natively supports Windows 8 and above operating systems.

The above is the detailed content of How to Create UEFI Bootable USB Drive on Windows 10. For more information, please follow other related articles on the PHP Chinese website!

source:isumsoft.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!