Quick Links

Key Takeaways

  • Since your Windows computer is prone to issues, it's a good idea to create a bootable USB flash drive with Windows 11. That way, you can quickly reinstall Windows if something goes wrong and makes the operating system unusable.
  • The most convenient method to create a bootable USB flash drive is by using the Media Creation Tool.
  • Alternatively, you can use Rufus. And, if you're comfortable with command line tools, you can also create the bootable USB drive using Command Prompt.

You can install Windows 11 on your computer either using a DVD or from a USB drive. While both methods work well, the DVD method is somewhat lengthy and more prone to errors. On the other hand, you can easily create a bootable Windows 11 USB drive and use it to install the OS on your computer.

Why Is It Important to Have a Bootable USB Drive Ready?

Its relatively common to face issues on your Windows 11 computer. You can get rid of most of those issues by implementing a few basic fixes, but what happens when you come across a problem that has made your computer totally unusable?

If you've tried all the normal fixes for that issue, the last option left for you is to reinstall Windows. In this situation, if you have a bootable USB drive ready, you can use it to install the operating system, eliminating the need to take your device to a technician to reinstall the operating system.

You can also give your bootable USB drive to your friend if they want to install Windows 11 on a new computer.

In any case, a bootable USB drive is one of the most important tools in your toolbox that you should have ready, because you never know when you'll come across a situation where you'll need it.

Create a Bootable Windows 11 USB Drive Using the Media Creation Tool

The easiest and Microsoft-recommended way to create a bootable USB drive is by using the Media Creation Tool. It's a program by Microsoft that allows you to create a bootable USB drive or DVD that contains the operating system files. To use the Media Creation Tool, first plug in a USB drive to your computer. The USB drive must have at least 8GB of space available.

Then, visit the Windows 11 download page, and click the "Download Now" button under the Create Windows 11 Installation Media option. This will download the Media Creation Tool on your computer.

Download Now button for the Media Creation Tool.

Open the downloaded Media Creation Tool, and click the "Accept" button to accept all the Microsoft terms and conditions.

Accept option in Terms and License window.

Uncheck the "Use the recommended options for this PC" box, click the "Language" dropdown menu, and choose your preferred language. Then, click "Next."

Selecting Language in the Window 11 Setup Window.

In the Choose which media to use window, select the “USB Flash Drive” option and click "Next."

USB Flash Drive option in the Windows 11 Setup window.

Select your USB drive. You can click the “Refresh Driver List” option if your USB drive is not listed. Then, click the “Next” option.

Selecting the USB Flash Drive.

The Media Creation Tool will then download and set up a Windows 11 installer on your USB Drive. The process is going to take some time, depending on your internet speed.

Windows 11 download screen in the Setup window.

Once your USB flash drive is ready, click the "Finish" option to close the window.

Finish option in the Windows 11 Setup window.

You can now use the USB drive to install Windows 11 on a computer.

Create a Bootable Windows 11 USB Drive Using Rufus

Rufus is a free and open-source utility that allows you to create a bootable USB flash drive for any operating system, including Windows 11. However, to use this tool, you will need to have the Windows 11 ISO file downloaded to your computer. You can get the Windows 11 ISO file from the Microsoft website.

To do this, visit the Windows 11 download page, click the drop-down arrow under the Download Windows 11 Disk Image (ISO) section, and select the "Windows 11 (Multi-Edition ISO)" option. Then, click the "Download Now" button.

Download Now button for the Windows 11 ISO File.

Choose your preferred language from the language drop-down menu, then click "Confirm."

Selecting Language of the Windows 11 ISO File.

Click the "Download" button to begin downloading the file. The ISO file is approximately 7GB in size, which may take some time to download, depending on your connection speed.

Download option for Windows 11 ISO File.

Once you have the Windows 11 ISO file, visit the Rufus official website and download its latest version. Make sure you select the link labeled "Standard" under the Type section.

Rufus download file on its website.

After downloading the Rufus app, open it, click the drop-down arrow for the "Device" option, and choose your USB device.

Device option in the Rufus app

Select "Disk or ISO image" from the Boot selection drop-down menu, then click the "Select" button next to it.

Select option in the Rufus app.

Choose the Windows 11 ISO file you just downloaded and click "Open."

Selecting the Windows 11 ISO File.

Make sure the Partition Scheme is set to "GPT" and File System is set to "NTFS." Then, click "Start."

Start option in the Rufus window.

In the Windows User Experience window, check the boxes next to "Remove requirement for 4GB+ RAM, Secure Boot, and TPM 2.0" and "Remove Requirement for an Online Microsoft Account." Then, click "OK."

Windows User Experience window in Rufus.

Click "Yes."

Click "OK" to grant Rufus permission to delete all data present on your USB drive and turn it into a bootable Windows 11 drive.

OK option in the Rufus window.

Rufus will initiate the process, and you can monitor the progress under the Status section.

Rufus making USB drive bootable.

Once the process is complete, you will see the Ready message with a green background under the Status section.

Ready option with Green background.

Create a Bootable Windows 11 USB Using Command Prompt

You should always prefer the Media Creation Tool or the Rufus method to create a bootable USB drive. However, if both of these methods fail to work, you can use Command Prompt to create a bootable USB drive. To do this, first, make sure you have the Windows 11 ISO file on your computer.

Next, open Command Prompt as an administrator, type DISKPART and hit Enter.

DISKPART command in Command Prompt.

Then, type LIST DISK and hit Enter. This will list all the storage devices connected to your computer.

LIST DISK command in Command Prompt.

Note the disk number of your USB drive. In our case, it’s DISK 2.

Name of USB drive in the Command Prompt.

Type SEL (YourDisk) and hit Enter to select your USB drive.

Selecting the USB Drive.

You will now have to clean the drive. For this, type Clean and hit Enter.

Clean command in Command Prompt.

Next, type the following command and hit the Enter key to create a primary partition:

        Create Partition Primary
    
Partition creating command in Command Prompt.

Type List par and press Enter to choose the main partition.

List par command in Command Prompt.

You’ll now have to format the USB drive. For this, type the following command and hit Enter:

        format FS=FAT32 quick
    
Format command in Command Prompt.

Now, you need to assign a volume letter to the USB drive. To do this, type the following command and press Enter.

        assign letter=(Letter)
    
Assign letter command in Command Prompt.

Type exit and hit Enter to exit the Diskpart utility.

Exit command in Command Prompt.

You’ll now have to mount the Windows 11 ISO file. For this, execute the following command:

        PowerShell Mount-DiskImage -ImagePath "ISO_FIle_Location"
    
ISO mounting command in Command Prompt.

After the mounting process is complete, restart the Command Prompt window with administrative rights.

Windows 11 mounting process complete.

Type DISKPART and hit Enter. After that, execute the List Volume command. This will show the mounted volume (DVD-ROM). Note down the "Ltr" of the mounted volume, as you’ll need it later. In our case, it’s “E.”

List Volume command in Command Prompt.

Type exit and hit Enter to get out of the Diskpart utility.

Then, type the mounted volume letter followed by the colon sign. For instance, if the volume letter is E, then the command will look like:

        E:
    
Accessing the mounted volume drive.

Type cd boot and hit Enter.

cd boot command in Command Prompt.

After that, type the following command and press Enter:

        bootsect /nt60 (USB_Letter)
    
bootsect command in Command Prompt.

Next, you will have to copy the Windows 11 system files to your USB flash drive. For this, execute the following command. Make sure to replace “E:” and “L:” with your mounted ISO volume and USB Drive letter, respectively.

        xcopy E:\*.* L:\/E /F /H
    
xcopy command in Command Prompt.

The process is going to take around 10 minutes to complete. Once it is done, you can use your USB bootable drive to install Windows 11.

Copy completed of Windows 11 files.

These were all the methods to make a bootable Windows 11 USB. Just as a reminder, the Media Creation Tool should always be your preferred method for creating the bootable USB drive. In case it doesn't work, the Rufus method is a good alternative. And in the worst-case scenario, if neither of these methods were helpful or you prefer not to use a third-party application (Rufus), you can use the Command Prompt method.