How to Create a Bootable USB Drive for Windows 11

Download now

You can build Windows 11 installation media three main ways: Microsoft's official tool, the third-party Rufus utility, or a manual DiskPart process. This guide compares them and covers GPT/UEFI formatting and requirement-check options.

Updated August 9, 2026 · PC Utility Hub Editorial Team

What you need

  • A USB flash drive, 8 GB minimum (16 GB+ recommended).
  • A Windows 11 ISO, either downloaded via the official Create Windows 11 Installation Media tool or the direct ISO download page on microsoft.com.
  • A working PC to build the media on.

Warning: Building the USB drive erases all existing data on it. Back up anything important first.

Method 1: Official Media Creation tool

Microsoft's 'Create Windows 11 Installation Media' tool is the simplest route for most users: it downloads a current, signed ISO and writes it to USB automatically, handling GPT/UEFI formatting for you.

  1. 1Download the tool from microsoft.com/software-download/windows11.
  2. 2Run it, accept the license terms, choose language and edition.
  3. 3Select USB flash drive as the media type and pick your drive.
  4. 4Wait for download and write to complete, then boot from it.

Method 2: Rufus

Rufus gives more control over partition scheme and offers extended options that can adjust certain Windows 11 setup requirement checks (such as TPM 2.0, Secure Boot, RAM, or the Microsoft account requirement during OOBE). These options exist for scenarios like unsupported-but-capable hardware or offline account setup; use them only if you understand the tradeoffs, since they run Windows on hardware or configurations Microsoft doesn't officially support.

  1. 1Download an official Windows 11 ISO from microsoft.com.
  2. 2Open Rufus (from rufus.ie), select your USB drive.
  3. 3Click SELECT and choose the ISO.
  4. 4Set Partition scheme to GPT and Target system to UEFI (non CSM) for modern PCs.
  5. 5If prompted with Windows User Experience options, choose whether to remove requirement checks or the online Microsoft account requirement.
  6. 6Click START and wait for the write to finish.

Method 3: Manual DiskPart + file copy

This method uses built-in Windows tools only, useful when you can't run third-party software.

diskpart
list disk
select disk N
clean
convert gpt
create partition primary
format fs=fat32 quick
assign
exit

GPT vs MBR and TPM-bypass options explained

Windows 11 setup normally checks for UEFI boot with GPT partitioning, TPM 2.0, Secure Boot, and a supported CPU. Tools like Rufus can generate media that skips some of these checks at install time. This does not make unsupported hardware officially supported — Microsoft may withhold future updates on such systems. It's presented here as a factual option some IT users choose, not a recommendation to bypass security features casually.

MethodControl levelBest for
Media Creation ToolLow, automaticStandard supported PCs
RufusHigh, customizableAdvanced users, unsupported hardware, offline account setup
Manual DiskPartFull manual controlNo third-party tools allowed

Booting from the USB

  1. 1Restart the PC with the USB drive inserted.
  2. 2Enter the boot menu (often F12, F10, Esc, or Del depending on manufacturer) or set USB first in UEFI firmware settings.
  3. 3Select the USB drive and proceed through Windows Setup.

If setup or boot fails

If the drive won't boot, recheck the partition scheme matches your firmware mode. If Windows installs but won't start afterward, boot the same USB and choose Repair your computer to reach WinRE, or run System File Checker and CHKDSK once back in Windows.

Frequently asked questions

Which method is easiest?
The official Media Creation/Installation Media tool from Microsoft is easiest for most supported PCs.
Why use Rufus instead of Microsoft's tool?
Rufus offers more control over partition scheme and optional requirement-check adjustments for unsupported hardware.
Is bypassing TPM/Secure Boot checks safe?
It can leave a device outside Microsoft's official support, potentially affecting future updates. It's a known option, not a guaranteed-safe practice.
Does the USB need to be FAT32 or NTFS?
UEFI booting traditionally requires FAT32; Rufus can work around the 4GB file-size limit for larger install.wim files when needed.