Installation and Upgrade Create Windows 11 Bootable USB Installation Media

  • Thread starter Thread starter Brink
  • Start date Published: Start date Updated Updated:
  • Featured
  • Tags Tags
    boot usb

Win11USB Banner.png

This tutorial will show you how to create a bootable USB flash drive used to install Windows 11 with UEFI support.

You can use a Windows 11 installation USB flash drive to clean install, upgrade, reset, or repair Windows 11.

The installation USB can also be used as a recovery drive to boot to WinRE (aka: advanced startup).

Reference:

You must be signed in as an administrator to create a bootable Windows 11 installation USB.

The USB flash drive needs to be at least 8 GB or larger in size.




Contents

  • Option One: Create Windows 11 Bootable USB Installation Media with Media Creation Tool
  • Option Two: Create Windows 11 Bootable USB Installation Media with Rufus [Good on unsupported hardware]
  • Option Three: Create Windows 11 Bootable USB Installation Media in Command Prompt




Option One

Create Windows 11 Bootable USB Installation Media with Media Creation Tool


This will be for a Windows 11 Version 25H2 build 26200.8457 USB.


1 Click/tap on the Download button below, and click/tap on the Download Now button at Microsoft's site below Create Windows 11 Installation Media. (see screenshot below)


Windows_11_MCT-1.png

2 Save the mediacreationtool.exe file version 10.0.26100.7019 to your desktop, and run it.

Windows_11_MCT-2.webp

3 If prompted by UAC, click/tap on Yes.

4 Click/tap on Accept for the license terms. (see screenshot below)

Windows_11_MCT-3.png

5 Uncheck the Use the recommended options for this PC box. (see screenshot below)

Leaving the Use the recommended options for this PC box checked will have the Media Creation Tool download an ISO that's the same language, edition, and architecture as the current PC.


Windows_11_MCT-4.png

6 Select (dot) USB flash drive, and click/tap on Next. (see screenshot below)

Windows_11_MCT-5.png

7 Connect your USB flash drive, click/tap on the Refresh drive list link, select the USB flash drive, and click/tap on Next. (see screenshot below)

This USB flash drive will be formatted and lose all data on it.


Windows_11_MCT-6.png

8 It will now start Downloading Windows 11 and Creating Windows 11 media. (see screenshot below)

Windows_11_MCT-7.png

9 Click/tap on Finish when the USB flash drive is ready. (see screenshot below)

Windows_11_MCT-8.png




Option Two

Create Windows 11 Bootable USB Installation Media with Rufus


This is a good option if you are installing Windows 11 on a PC with unsupported hardware.


1 If you have not already, you will need to download a Windows 11 ISO file.

2 Download the latest version of Rufus, and save its .exe file to your desktop.


The "portable" version is a standalone exe file that doesn't install anything to your PC. For Rufus FAQs, see: rufus FAQ on GitHub


3 Connect the 8 GB or larger USB flash drive.

This USB flash drive will be formatted and lose all data on it.


4 Run the Rufus .exe file, and click/tap on Yes if prompted by UAC.

5 Change the following settings in Rufus, and click/tap on Start when finished. (see screenshot below)
  • Under Device, select the USB flash drive you want to format and use.
  • Under Boot selection, click/tap on the SELECT button, and navigate to and select the Windows 11 ISO file.
  • Under Image option (if available), select Standard Windows installation.
  • Under Partition scheme, select GPT.
  • Under Target system, select UEFI (non CSM).
  • Under Volume label, you can enter any name you like for the USB flash drive, or leave the default name.
  • Under File system, select FAT32 or NTFS.
  • Under Cluster size, select the (Default) (ex: 4096 bytes) it has listed.
Rufus-1.webp

6 Check or uncheck the "Customize Windows installation" options you want, and click/tap on OK. (see screenshot below)
  • Remove Requirement for 4GB+ RAM, Secure Boot and TPM 2.0 – Check this option if you want to install Windows 11 on a computer with unsupported hardware.
  • Remove requirement for an online Microsoft account - Check this option to skip the Microsoft Account requirement. Windows 11 will not ask you to sign in with a Microsoft Account during the initial setup.
  • Create a local account with username – Rufus will create local account with the specified username in the new installation.
  • Set regional options using the same values as this user's – Rufus will copy the current regional settings to the new installation.
  • Disable data collection (Skip privacy questions) - Windows Setup will not ask you to "Choose privacy settings for your device" during installation.
  • Disable BitLocker automatic device encryption - Windows will not automatically turn on BitLocker or Device Encryption for your OS drive if setting up a Microsoft account during installation.
  • Use "Windows CA 2023" signed bootloaders (requires KB5025885 or Mosby) - Must select a 25H2 ISO for this option to be available.
Rufus-1b.webp

7 Click/tap on OK to confirm. (see screenshot below)

Rufus-2.png

8 Rufus will now start creating the bootable USB flash drive. (see screenshot below)

Rufus-3.png

9 When finished, click/tap on Close to close Rufus. (see screenshot below)

Rufus-5.png




Option Three

Create Windows 11 Bootable USB Installation Media in Command Prompt


This option will use the dual FAT32 and NTFS partitions on the USB since the install.wim file for Windows 11 is usually over 4GB in size that prevents using only the FAT32 file system.



1 If you have not already, you will need to download a Windows 11 ISO file.

2 Connect the 8 GB or larger USB flash drive.

This USB flash drive will be formatted and lose all data on it.


3 Open an elevated Windows Terminal, and select Windows PowerShell or Command Prompt.

4 Type diskpart into the elevated terminal, and press Enter. (see screenshot below step 18)

5 Type list disk into the elevated terminal, press Enter, and make note of the Disk # (ex: 3) for the USB flash drive from step 2.

6 Type select disk # into the elevated terminal, and press Enter.

Substitute # in the command above with the actual Disk # (ex: 3) from step 5) above for the USB flash drive.

For example: select disk 3


7 Type clean into the elevated terminal, and press Enter.

8 Type convert mbr into the elevated terminal, and press Enter.

9 Type create partition primary size=1024 into the elevated terminal, and press Enter.

10 Type create partition primary into the elevated terminal, and press Enter.

11 Type select partition 1 into the elevated terminal, and press Enter.

12 Type format fs=fat32 quick into the elevated terminal, and press Enter.

13 Type assign letter=X into the elevated terminal, and press Enter.

14 Type active into the elevated terminal and press Enter.

15 Type select partition 2 into the elevated terminal, and press Enter.

16 Type format fs=ntfs quick into the elevated terminal, and press Enter.

17 Type assign letter=Y into the elevated terminal, and press Enter.

18 You can now close the elevated Windows terminal.

diskpart.png

19 Open File Explorer (Win+E) to This PC. You will see the USB has two partitions. Partition "X" with FAT32 file system, and partition "Y" with NTFS file system. (see screenshot below)

File_Explorer_USB.png

20 Mount the ISO file from step 1.

21 Perform the following steps to copy the mounted ISO contents to the USB X: (FAT32) partition:
  1. Click/tap on the mounted ISO in the navigation pane of File Explorer to open it.
  2. Select everything except the sources folder in the mounted ISO.
  3. Right click or press and hold on the selected files.
  4. Click/tap on Show more options (Shift+F10).
Copy-1.png

22 Click/tap on Send to, and click/tap on the USB Drive (X: ). (see screenshot below)

Copy-2.png

23 Perform the following steps to copy the "boot", "efi", "support", and "sources" folder from the mounted ISO to the USB Y: (NTFS) partition:
  1. Click/tap on the mounted ISO in the navigation pane of File Explorer to open it.
  2. Select the boot, efi, support, and sources folder in the mounted ISO.
  3. Right click or press and hold on the selected folders.
  4. Click/tap on Show more options (Shift+F10).
Copy-3.png

24 Click/tap on Send to, and click/tap on the USB Drive (Y: ). (see screenshot below)

It may take a while to finish copying the "boot", "efi", "support, and "sources" folders to the USB Y: (NTFS) partition.


Copy-4.png

25 Open the USB X: (FAT32) partition, and create a new folder (Ctrl+Shift+N) named sources. (see screenshots below)

sources-1.png
sources-2.png

26 Open the Y:\sources folder from the USB Y: (NTFS) partition, and Cut (Win+X) the boot.wim file. (see screenshots below)

move_boot.wim-1.png
move_boot.wim-2.png

27 Paste (Ctrl+V) the boot.wim file from the USB Y: (NTFS) partition in step 24 into the new sources folder in the USB X: (FAT32) partition from step 23. (see screenshot below)

move_boot.wim-3.png

28 The Windows 11 bootable USB installation media is now ready.

29 You can unmount the ISO file.

30 You can now close all File Explorer windows.


That's it,
Shawn Brink


 
Last edited:
Windows 11 version 25H2 build 26200.7840 now available to download as ISO or USB with MCT.



26200.7840.webp
 

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    TerraMaster F8 SSD Plus NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Amazon Basics Wired Full Keyboard MD005
    Mouse
    Logitech MX Master 4
    Internet Speed
    2 Gbps Download and 100 Mbps Upload
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    CyberPower CP1500PFCLCD
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Surface Laptop 7 Copilot+ PC
    CPU
    Snapdragon X Elite (12 core) 3.42 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Monitor(s) Displays
    15" HDR
    Screen Resolution
    2496 x 1664
    Hard Drives
    1 TB SSD
    Internet Speed
    Wi-Fi 7 and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
Windows 11 version 25H2 build 26200.8037 now available to download as ISO or USB with MCT.



8037.webp
 

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    TerraMaster F8 SSD Plus NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Amazon Basics Wired Full Keyboard MD005
    Mouse
    Logitech MX Master 4
    Internet Speed
    2 Gbps Download and 100 Mbps Upload
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    CyberPower CP1500PFCLCD
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Surface Laptop 7 Copilot+ PC
    CPU
    Snapdragon X Elite (12 core) 3.42 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Monitor(s) Displays
    15" HDR
    Screen Resolution
    2496 x 1664
    Hard Drives
    1 TB SSD
    Internet Speed
    Wi-Fi 7 and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
MS servers must be quiet today as I was able to download this at 30Mbps, which is faster than my normal broadband speed!
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 25H2 26200.8524
    Computer type
    Laptop
    Manufacturer/Model
    Acemagic LX15PRO
    CPU
    AMD Ryzen 7 5825U with Radeon Graphics
    Memory
    16GB
    Screen Resolution
    1920 x 1080
    Hard Drives
    SSD 2TB
    Internet Speed
    30 Mbps
    Browser
    Brave
    Antivirus
    Webroot Secure Anywhere
    Other Info
    System 3

    Acer Swift SF114-34 laptop
    OS Windows 11 Pro 26200.8524
    CPU Pentium Silver N6000
    RAM 4GB
    SSD Samsung 970 EVO Plus SSD 2TB (an upgrade)
  • Operating System
    Windows 11 Pro 23H2 22631.2506
    Computer type
    Laptop
    Manufacturer/Model
    HP Mini 210-1090NR PC (bought in late 2009!)
    CPU
    Atom N450 1.66GHz
    Memory
    2GB
    Browser
    Brave
    Antivirus
    Webroot
Windows 11 version 25H2 build 26200.8246 now available to download as ISO or USB with MCT.



26200.8246.webp
 

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    TerraMaster F8 SSD Plus NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Amazon Basics Wired Full Keyboard MD005
    Mouse
    Logitech MX Master 4
    Internet Speed
    2 Gbps Download and 100 Mbps Upload
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    CyberPower CP1500PFCLCD
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Surface Laptop 7 Copilot+ PC
    CPU
    Snapdragon X Elite (12 core) 3.42 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Monitor(s) Displays
    15" HDR
    Screen Resolution
    2496 x 1664
    Hard Drives
    1 TB SSD
    Internet Speed
    Wi-Fi 7 and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
Windows 11 version 25H2 build 26200.8457 now available to download as ISO or USB with MCT.



26200.8457.webp
 

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    TerraMaster F8 SSD Plus NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Amazon Basics Wired Full Keyboard MD005
    Mouse
    Logitech MX Master 4
    Internet Speed
    2 Gbps Download and 100 Mbps Upload
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    CyberPower CP1500PFCLCD
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Surface Laptop 7 Copilot+ PC
    CPU
    Snapdragon X Elite (12 core) 3.42 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Monitor(s) Displays
    15" HDR
    Screen Resolution
    2496 x 1664
    Hard Drives
    1 TB SSD
    Internet Speed
    Wi-Fi 7 and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
Back
Top Bottom