search
HomeSystem TutorialWindows Series3 Ways to Create a Windows 11 Bootable USB Drive

Microsoft makes it easy to create an installation media with its Media Creation Tool. In addition, you can also use Rufus and the Command Prompt to create one. In this guide, we show you the three different ways to create a USB flash drive installer for Windows 11.

Before We Start: How to Download the Windows 11 ISO Image

To successfully create a Windows 11 USB bootable drive, you will need a Windows 11 ISO file, also known as an ISO image. As such, get this sorted before you proceed to create a bootable USB. You can easily download the Windows 11 ISO from the Microsoft official website. Here's how to do it:

  1. Visit Microsoft’s official page to download Windows 11.
  2. Scroll down to the Download Windows 11 Disk Image (ISO) for X64 devices section.
  3. Click the drop-down menu and select Windows 11 (multi-edition ISO).3 Ways to Create a Windows 11 Bootable USB Drive
  4. Next, click on the DownloadNow button to continue.
  5. The current page will load additional information and show the Select the product language section. Click the drop-down for Choose one and select your preferred language. Click Confirm to continue.3 Ways to Create a Windows 11 Bootable USB Drive
  6. When the download section loads, click the 64-bit Download button.3 Ways to Create a Windows 11 Bootable USB Drive
  7. Your download will begin immediately. However, it may take some time to finish downloading, depending on your Internet speed.

Once you have the ISO file downloaded, follow one of the methods below to create a Windows 11 bootable USB drive.

1. How to Create a Windows 11 Bootable USB Using Rufus

3 Ways to Create a Windows 11 Bootable USB Drive

Rufus is an open-source utility to format and create a bootable USB flash drive for the Windows operating system. It's a lightweight utility and offers a few more customization options compared to Microsoft's in-house media creation tool.

To create a Windows 11 bootable USB drive using Rufus:

  1. Visit the Rufus website and scroll down to the Download section.
  2. Click on the Rufus link to download the latest version.
  3. Run the executable file and click Yes if prompted by UAC.
  4. Connect your USB flash drive to your PC and wait for Rufus to detect and show it under the Device section.
  5. Click the drop-down for Boot selection and select Disk or ISO image.
  1. Then, click the SELECT button.
  2. Select the Windows ISO file and click Open.
  3. Click the drop-down under the Image option and select Standard Windows 11 Installation.
  4. Leave the Partition scheme (GPT) and Target system (UEFI) as default.
  5. Under Volume label, enter a name for your bootable flash drive.
  6. Leave the File system and Cluster size, and other options as default.
  7. Make sure the Quick format and Create extended label and icon files option is checked.
  8. Click the Start button to initiate the bootable drive creating process.

Once done, Rufus will show a success message. Now you can use the Windows 11 bootable drive to install the OS on any compatible system.

2. How to Create a Windows 11 Bootable USB Drive Using the Media Creation Tool

The media creation tool is Microsoft's in-house solution to create an installation media. You can use the media creation tool to create a bootable USB flash drive or download the ISO file to your local drive. Since it needs to download the ISO to create a bootable drive, you cannot use an existing Windows ISO image with this tool.

To create an installation media using the media creation tool:

  1. Connect your USB flash drive of at least 8GB to your PC. Make sure it is detected and you have taken a backup of all the files on your USB drive.
  2. Next, visit the Microsoft download center page.
  3. Under the Create Windows 11 Installation Media section, click the Download Now button and save the file to your PC.
  4. Next, run the Mediacreationtool.exe file and click Yes if prompted by UAC. The tool may take a few seconds to launch, so wait till you see the Setup wizard.
  5. Click the Accept button to agree to the terms.3 Ways to Create a Windows 11 Bootable USB Drive
  1. The media creation tool will automatically select the Edition and Language to match the current Windows configuration on your PC. To change the language, uncheck Use the recommended options for this PC box and select your preferred language from the drop-down menu.
  2. Choose your options and click Next.3 Ways to Create a Windows 11 Bootable USB Drive
  3. In the Choose which media to use window, select USB flash drive.
  4. Click the Next button.
  5. Select your USB drive from the list of drives available.3 Ways to Create a Windows 11 Bootable USB Drive
  6. Click the Next button to continue.
  7. Next, click the Finish button.

Media Creation Tool will now download the necessary Windows 11 files and create an installation media. When the "your USB flash drive is ready" message appears, click the Finish button to close the setup wizard. Now you can boot from the USB drive to troubleshoot or clean install Windows 11.

3. How to Create a Bootable Drive Using Command Prompt

If you don’t want to use a third-party tool to create a bootable drive, you can use the Diskpart utility and Command Prompt to create installation media. Here's how to do it.

  1. First, take a backup of all the files on your USB drive and then connect it to your PC.
  2. Press the Win key, type cmd, and click on Run as Administrator under Command Prompt. You can also use PowerShell if you prefer it over Command Prompt.3 Ways to Create a Windows 11 Bootable USB Drive
  3. In the Command Prompt window, type the following command and hit enter to launch the Windows Diskpart utility.
    <code class="hljs ">DISKPART</code> 
  4. Next, type the following command to list all the available storage devices:
    <code class="hljs php">LIST DISK</code> 
  5. Here, locate your USB drive. You can look at the Size column to determine your USB drive. In this case, the USB drive is listed as Disk 2.
  1. Next, type the following command to select your drive:
    <code class="hljs ">SEL DISK 2</code> 
  2. In the above command, change DISK 2 with the number assigned to your USB drive. For example, if you have a single SSD or SATA drive setup, your primary drive will show as DISK 0 and USB drive as DISK 1. It is of extreme importance that you select the right drive as the next step involves wiping clean the selected drive.
  3. Once the drive is erased, type the following command and hit enter to erase all the content from the drive:
    <code class="hljs ">Clean</code> 
  4. Next, type the following command to create a primary partition:
    <code class="hljs sql">CreatePartition Primary</code> 
  5. After creating a primary partition, type the following command to select the main partition:
    <code class="hljs php">List Par</code> 
  6. Command Prompt will show the details of your USB drive.3 Ways to Create a Windows 11 Bootable USB Drive
  7. Type the following command and hit enter to activate the partition:
    <code class="hljs ">Active</code> 
  8. Then type the following command to format the USB drive. It is important to format the drive in NTFS format as the FAT32 format will cause the incorrect parameter error.
    <code class="hljs xml">FORMAT FS=NTFS LABEL=“BootableUSB” QUICK OVERRIDE</code> 
  9. Once done, type Exit and hit enter to exit the Disk Part utility.

Now you will need to mount the ISO image and then move its content to your USB drive.

3 Ways to Create a Windows 11 Bootable USB Drive
  1. To do this, type the following command and hit Enter to mount the Windows 11 ISO file:
    <code class="hljs xml">PowerShell Mount-DiskImage -ImagePath "C:\Users\UserName\Downloads\Win11_English_x64v1.iso"</code> 
  2. In the above command, replace the file path with the location of your Windows 11 ISO.3 Ways to Create a Windows 11 Bootable USB Drive
  3. Once the ISO is mounted, type the following command to launch Diskpart.
    <code class="hljs ">Diskpart</code> 
  4. Next, type the following command to show the available volume.
    <code class="hljs php">List volume</code> 
  5. This will help you determine the Drive letter for the mounted ISO file. In the Type column, the mounted ISO will be listed as DVD-ROM. And the Ltr column lists the letter associated with the volume. Note down the details of the ISO volume as you will be using it moving forward.3 Ways to Create a Windows 11 Bootable USB Drive
  1. Once you have the volume details for the mounted ISO, type the following command to exit Diskpart:
    <code class="hljs php">Exit</code> 
  2. Next, type the mounted ISO volume letter and hit enter. For example, if your mounted ISO volume letter is J, then type the following command and press Enter.
    <code class="hljs ">J:</code> 
  3. Type the following command to boot from CD:
    <code class="hljs bash">cd boot</code> 
  4. Next, type the following command to apply the master boot code compatible with Bootmgr to the USB flash drive:
    <code class="hljs ">Bootsect /nt60 I:</code> 
  5. In the above command, replace I with the drive letter associated with your USB flash drive.3 Ways to Create a Windows 11 Bootable USB Drive
  6. Next, type the following command and hit Enter to copy Windows 11 system files to the USB flash drive:
    <code class="hljs ">xcopy J:\*.* I:\ /E /F /H</code> 
  7. In the above command, replace K: and I: with your Mounted ISO Volume and USB drive letter, respectively.
  8. The process may take a 5-10 minutes to complete. If the Command Prompt feels stuck, it is normal behaviour, so wait until the process is complete.
  9. If successful, you will see a Files (s) Copied message.

That’s it. Now you can use the USB bootable drive to clean install Windows 11.

Multiple Ways to Create a Windows 11 Bootable USB Drive

With its Media Creation Tool, Microsoft makes it easy to create installaltion media. However, if you have a Windows 11 ISO image ready, you can use Rufus or the Command Prompt to create a Windows 11 bootable USB drive quickly. You can use the same to clean install Windows 11 on a new PC, troubleshoot your Windows computer or dual boot Windows 10 with Windows 11.

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

Statement
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
PowerToys Is the Ultimate Work From Home Companion AppPowerToys Is the Ultimate Work From Home Companion AppMar 03, 2025 am 10:07 AM

PowerToys: Supercharge Your Windows Work-From-Home Experience Working from home presents unique productivity challenges. Distractions abound, demanding a focused workspace. PowerToys helps optimize your home office, whether it's a dedicated space or

How to Find the Product Key for Windows 10How to Find the Product Key for Windows 10Mar 04, 2025 am 01:46 AM

Retrieve lost Windows 10 product key: Two ways Have you lost your product key after installing genuine Windows 10? Don't worry, this article will introduce two ways to retrieve your keys so that you can reinstall the system in the future. Case 1: Windows 10 is installed but the key is lost Even if you get Windows 10 through a free upgrade or genuine installation, you can easily find the product key using the iSumsoft Product Key Finder as long as your computer works properly. Method 1: Use iSumsoft Product Key Finder Download and install: Download and install iSumsoft Product Key Finder to your computer. Find the product key: Start

How to Install Windows 11 23H2 on Unsupported PCHow to Install Windows 11 23H2 on Unsupported PCMar 03, 2025 pm 12:55 PM

In the second half of 2023, Microsoft released the Windows 11 23H2 system. Many users can't wait to upgrade their computer to the latest version, but some users encountered the error message "This computer does not meet the minimum requirements..." when trying to install Windows 11 23H2 on an unsupported computer. don’t worry! This article will provide a step-by-step guide to how to install Windows 11 23H2 on an unsupported computer. Let's get started! Note: Microsoft said, "Installing Windows 11 on unsupported computers is not recommended. If you choose to install Windows 11 on hardware that does not qualify, you should risk compatibility issues." allow

The Best Ergonomic Keyboards of 2025The Best Ergonomic Keyboards of 2025Mar 03, 2025 am 10:02 AM

Recommended Best Ergonomic Keyboards in 2025 Ergonomic keyboards function the same as regular keyboards, but add support to reduce stress on wrists, hands and fingers. These keyboards are designed to keep your hands and wrists in a more natural position, helping to minimize muscle strain and prevent potential damage from prolonged typing. There are a wide variety of ergonomic keyboards available on the market, so be sure to consider which features are most important to you before purchasing. From layout to design, each type offers unique benefits based on your preferences and needs. Most ergonomic keyboards fall into two categories. The first category is the split keyboard, which, as the name suggests, divides the key layout into two parts for a more natural wrist posture. There are two types of split keyboards:

Acer PD163Q Dual Portable Monitor Review: I Really Wanted to Love ThisAcer PD163Q Dual Portable Monitor Review: I Really Wanted to Love ThisMar 18, 2025 am 03:04 AM

The Acer PD163Q Dual Portable Monitor: A Connectivity Nightmare I had high hopes for the Acer PD163Q. The concept of dual portable displays, conveniently connecting via a single cable, was incredibly appealing. Unfortunately, this alluring idea quic

How to Change the Font and Layout of PowerShell WindowHow to Change the Font and Layout of PowerShell WindowMar 03, 2025 pm 01:03 PM

Enhance your Windows 10 PowerShell experience with these simple customization steps! This guide shows you how to adjust PowerShell fonts and enable automatic text wrapping for improved readability and optimal window fitting. Let's get started: Step 1

Top 3 Windows 11 Gaming Features That Outshine Windows 10Top 3 Windows 11 Gaming Features That Outshine Windows 10Mar 16, 2025 am 12:17 AM

Upgrade to Windows 11: Enhance Your PC Gaming Experience Windows 11 offers exciting new gaming features that significantly improve your PC gaming experience. This upgrade is worth considering for any PC gamer moving from Windows 10. Auto HDR: Eleva

How to Open File Explorer Option in Windows 10How to Open File Explorer Option in Windows 10Mar 03, 2025 pm 12:57 PM

Access File Explorer Options in Windows 10: Three Easy Ways This guide provides three simple methods to open File Explorer Options in Windows 10, allowing you to customize settings for file and folder views, opening items, and search functionality. M

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.