How to create bootable Windows 11 24H2 USB install media

  • To create a Windows 11 24H2 USB bootable media, connect a USB flash drive to the computer, open “Rufus,” click “Download,” choose Windows 11 24H2 ISO settings, click “Download” again, click “Start,” customize the settings, including creating a media for unsupported hardware.
  • To use “Ventoy,” install the app on a USB flash drive and then drop the Windows 11 24H2 ISO file into the storage.
  • To use “Command Prompt,” download the Windows 11 2024 Update ISO file, and use the “diskpart” tool to clear, create a partition, and copy the installation files to the USB media.
  • To use the “Media Creation Tool,” launch the application, customize the settings, choose “USB flash drive,” select the bootable media, click “Next,” and “Finish.” 

If you want to install Windows 11 24H2 (2024 Update) on a computer that meets the hardware requirements, you’ll need to create a bootable USB media. In this guide, I will explain the different ways available to complete this task. Although there are multiple ways to upgrade to a new version of Windows 11, I still think that starting a device with a USB bootable media is the best method to resolve issues and ensure that you will apply a fresh installation. It’s also the only way to install Windows 11 24H2 on a new empty hard drive.

When you have to create a bootable USB flash drive to set up a new installation of Windows 11 24H2, you can use the Media Creation Tool, which is the official tool. However, you can also use third-party tools like Rufus and Ventoy. You can even use Command Prompt to manually create offline installation media.

In this guide, I will teach you multiple ways to create a USB bootable media to perform an in-place or clean install of the Windows 11 2024 Update. Although you can use virtually any USB flash drive, you still have to make sure it has at least 8GB of space. Also, it’s important to back up any data on the flash drive, as this process will format the flash drive, deleting its contents.

Create Windows 11 24H2 bootable USB using Rufus

To create a bootable USB to install Windows 11 24H2 using Rufus, use these steps:

  1. Open Rufus website.

  2. Click the link to download the latest version under the “Download” section.

  3. Double-click the Rufus executable file to launch the tool.

  4. Click the Settings button (third button from the left) at the bottom of the page.

  5. Choose the Daily option in the “Check for updates” setting and under the “Settings” section.

  6. Click the Close button.

  7. Click the Close button again.

  8. Open Rufus again.

  9. (Optional) Choose the USB flash drive under the “Device” section.

  10. Select the “Disk or ISO image” option under the “Boot selection” section.

  11. Click the down-arrow button (on the right side) and select the Download option.

  12. Click the Download button.

  13. Select the Windows 11 option.

  14. Click the Continue button.

  15. Select the “24H2” option to choose the Windows 11 2024 Update.

  16. Click the Continue button.

  17. Select the Windows 11 Home/Pro/Edu option.

  18. Click the Continue button.

  19. Select the language for Windows 11 installation.

  20. Click the Continue button.

  21. Select the x64 architecture option.

  22. Click the Download button.

  23. Select the location to save the Windows 11 24H2 ISO file automatically.

  24. Choose the “Standard Windows 11 Installation” option under the “Image option” setting.

  25. (Optional) Continue with the default settings after the download.

  26. (Optional) Specify a name for the drive (for example, Windows 11 24H2 Setup) under the “Volume label” setting.

  27. Click the Start button.

  28. Clear all the options from the “Windows User Experience” page to create an installation media without modifications.

  29. Click the OK button.

Once you complete the steps, the tool will begin creating a bootable media with the Windows 11 24H2 installation media.

At the time of this writing, you can use Rufus to create an installation media for computers that meet the minimum system requirements. You can also use it to create a USB flash drive for unsupported hardware, but only to perform a clean installation. The developers are working on an update to allow the ability to perform an in-place upgrade for unsupported PCs.

Create Windows 11 24H2 bootable USB using Ventoy

To create a Windows 11 bootable USB with Ventoy, use these steps:

  1. Open Ventoy GitHub page.

  2. Click the ventoy-x.x.xx-windows.zip file under the “Assets” section and download it to your computer.

    Quick note: You may need to force and keep the file as the browser may detect it as malicious.

  3. Open File Explorer.

  4. Open the Zip folder location.

  5. Double-click the open the ventoy-x.x.xx-windows.zip file.

  6. Click the Extract all button from the command bar.

  7. Click the Browse button.

  8. Select a location to extract the files.

  9. Click the Select Folder button.

  10. Click the Extract button.

  11. Open the ventoy-x.x.xx folder.

  12. Double-click the Ventoy2Disk.exe file to launch the installer.

  13. Choose the USB flash drive from the “Device” setting.

  14. Click the Install button.

  15. Click the OK button.

  16. Click on This PC from the left pane of File Explorer.

  17. Open the Ventoy drive.

  18. Copy and paste the Windows 11 24H2 ISO files to make them bootable.

After you complete the steps, you can use the USB flash drive to boot a device with the Ventoy software, where you can then choose to start the device with the Windows 11 24H2 ISO file.

Create Windows 11 24H2 bootable USB using Command Prompt

To create a Windows 11 24H2 USB flash drive from ISO with Command Prompt, use these steps:

  1. Open the Microsoft Support website.

  2. Select the Windows 11 option under the “Download Windows 11 Disk Image (ISO) for x64 devices” section.

  3. Click the Download button.

  4. Select the installation language.

  5. Click the Confirm button.

  6. Click the 64-bit Download button to save the Windows 11 24H2 ISO file on the computer.

  7. Open Start

  8. Search for Command Prompt, right-click the top result, and select the Run as Administrator option.

  9. Type the following command to open Diskpart and press Enter:

    diskpart
  10. Type the following command to determine the USB flash drive and press Enter:

    list disk
  11. Type the following command to select the storage and press Enter:

    select disk 1

    Quick tip: The select disk 1 command as an example, but you have to replace 1 with the flash drive you want to use.

  12. Type the following commands to delete everything from the USB flash drive and press Enter:

    clean

  13. Type the following command to create a primary partition and press Enter:

    create partition primary
  14. Type the following command to select the new partition and press Enter:

    select partition 1
  15. Type the following command to make the USB flash drive bootable and press Enter:

    format FS=FAT32 quick
  16. Type the following command to assign a volume and a drive letter for the USB flash drive and press Enter:

    assign letter=X

    Change X for any available letter you want to use in the command.

  17. Type the following command to quit the tool and press Enter:

    exit
  18. Type the following command to mount the Windows 11 24H2 ISO file and press Enter:

    PowerShell Mount-DiskImage -ImagePath "C:pathtoWindows11-24H2.iso"

    In the command, update the path with the location where you have stored the Windows 11 24H2 ISO file.

  19. Type the following command to relaunch Diskpart and press Enter:

    diskpart
  20. Type the following command to determine the drive letter for the mounted Windows 11 24H2 ISO file and press Enter:

    list volume
  21. Type the following command to exit Diskpart and press Enter:

    exit
  22. Type the following command to access the ISO file and press Enter:

    E:
  23. Type the following command to open the “boot” folder and press Enter

    cd boot
  24. Type the following command to update the volume boot code for the USB flash drive and press Enter:

    bootsect /nt60 X:
  25. Type the following command to copy all the Windows 11 2024 Update installation files to the USB flash drive and press Enter:

    xcopy E:*.* X: /E /F /H

    In the command, change the “E” and “X” letters with the correct drive letters for the ISO image file and the USB flash drive, respectively.

After you complete the steps, you can use the bootable USB to perform a clean install of Windows 11 24H2 on any supported computer.

Create Windows 11 24H2 bootable USB using Media Creation Tool

To create a bootable Windows 11 24H2 USB with the Media Creation Tool, use these steps:

  1. Open Microsoft support website.

  2. Click the Download Now button under the “Create Windows 11 installation media” section.

  3. Double-click the mediacreationtool.exe file to launch the tool.

  4. Click the Accept button.

  5. Click the Next button.

    Quick note: Clear the “Use the recommended options for this PC” option to select the correct language, architecture, and edition if you want to create a Windows 11 24H2 USB for another computer.

  6. Select the “USB flash drive” option.

  7. Click the Next button.

  8. Select the USB flash drive from the list.

  9. Click the Next button.

  10. Click the Finish button.

Once you complete the steps, you can start the computer with the USB drive to install Windows 11 24H2.

Update October 10, 2024: This guide has been updated to ensure accuracy and reflect changes to the process.

Why You Can Trust Pureinfotech

The author combines expert insights with user-centric guidance, rigorously researching and testing to ensure you receive trustworthy, easy-to-follow tech guides. Review the publishing process.


Source link
Exit mobile version