How to Create a Bootable USB Drive for Windows 11
Download nowYou 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.
- 1Download the tool from microsoft.com/software-download/windows11.
- 2Run it, accept the license terms, choose language and edition.
- 3Select USB flash drive as the media type and pick your drive.
- 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.
- 1Download an official Windows 11 ISO from microsoft.com.
- 2Open Rufus (from rufus.ie), select your USB drive.
- 3Click SELECT and choose the ISO.
- 4Set Partition scheme to GPT and Target system to UEFI (non CSM) for modern PCs.
- 5If prompted with Windows User Experience options, choose whether to remove requirement checks or the online Microsoft account requirement.
- 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
exitGPT 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.
| Method | Control level | Best for |
|---|---|---|
| Media Creation Tool | Low, automatic | Standard supported PCs |
| Rufus | High, customizable | Advanced users, unsupported hardware, offline account setup |
| Manual DiskPart | Full manual control | No third-party tools allowed |
Booting from the USB
- 1Restart the PC with the USB drive inserted.
- 2Enter the boot menu (often F12, F10, Esc, or Del depending on manufacturer) or set USB first in UEFI firmware settings.
- 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.
Related pages
- RufusLightweight open-source bootable USB creation tool from Akeo/Pete Batard.
- Media Creation ToolOfficial Microsoft tool for Windows 10 upgrades and USB/DVD/ISO creation.
- DiskpartOverview of the diskpart cmd tool and its core disk and partition commands.
- Diskpart Clean & Format USBCommands to safely wipe and reformat a USB flash drive with diskpart.
- CHKDSKOverview of the chkdsk utility, its switches, and how it fits into Windows disk maintenance.