Forum Discussion

Briarouu's avatar
Briarouu
Copper Contributor
May 29, 2026

Create a bootable Windows 11 USB installer for both old and new PCs?

There are 7 old Windows 10 PCs and three brand new PCs in my company to be upgraded to Windows 11 as Windows 10 was officially end of life. What is the best way to make a bootable Windows 11 installer with USB drive for all of the PCs?

The current situation:

  • Need to upgrade multiple company PCs to Windows 11
  • Want to use a USB drive as the installation media
  • PCs are currently running Windows 10 
  • I have legitimate Windows 11 licenses for each machine

The questions:

  • What size USB drive do I need? (I've seen 8GB mentioned but want to confirm)
  • For upgrading existing PCs (not clean installs), should I boot from USB or run setup from within Windows?
  • Are there any TPM 2.0 / Secure Boot gotchas I should watch out for on older company hardware?
  • Is there a way to skip the Microsoft account requirement during setup for work machines joined to a domain?

10 Replies

  • Truimtp's avatar
    Truimtp
    Copper Contributor

    If you are struggling to create a bootable Windows 11 USB drive on one of your older computers, the simplest and most effective workaround is to use a completely different, more modern PC to build your Windows 11 installer tool. Once created, that same USB drive will often work perfectly on both your new and old target machines.

    The logic is straightforward. Newer computers have modern firmware that correctly writes boot sectors and partition tables without issue. Older PCs sometimes have buggy BIOS implementations or outdated USB handling that corrupt the installation media during creation. By using a different PC as your "build machine," you bypass any hardware limitations of your older systems entirely.

    There is a limitation you must understand. If your older PCs cannot boot from a USB drive at all—meaning their BIOS lacks USB boot support entirely—then no Windows 11 installer tool created on any other PC will work. In that rare case, you would need to burn the installer to a DVD instead. However, almost all Windows 10 era computers support USB booting, even if it requires enabling a specific BIOS setting.

  • Dukesom's avatar
    Dukesom
    Copper Contributor

    If you are supporting both older Windows 10 computers and brand new PCs, the most flexible and completely free method is to bypass all third-party tools and build your own Windows 11 installer tool manually using nothing but built-in Windows commands. This approach is called the "manual boot sector" method.

    Step-by-Step Manual Boot Sector Setup

    Step 1: Prepare your USB drive.

    • Insert a USB drive with at least 8GB of storage. Open Command Prompt as an administrator.

    Step 2: Launch diskpart and clean the drive.

    • Type diskpart and press Enter. Then type list disk to see all drives connected to your computer. Identify your USB drive by its size.
    • Be very careful to select the correct disk—cleaning the wrong drive will erase all data permanently.
    • Type select disk X, then type clean and press Enter. This completely wipes the drive, removing all existing partitions.

    Step 3: Create the partition and format it.

    Type the following commands one after another:

    • create partition primary – creates a single primary partition on the USB drive
    • select partition 1 – selects the partition you just created
    • format fs=fat32 quick – formats the partition as FAT32

    Step 4: Mark the partition as active (for older PCs).

    • Type active and press Enter. This flag tells legacy BIOS systems which partition contains the bootloader. This step is essential for your older Windows 10 computers to boot from the USB drive.
    • Type assign to give the USB drive a drive letter, then type exit to leave diskpart.

    Step 5: Mount your Windows 11 ISO file.

    • Right-click the ISO file and select "Mount". Windows will mount it as a virtual DVD drive. Note the drive letter assigned.

    Step 6: Write the boot sector using bootsect.

    • The bootsect /nt60 command writes boot code that works with both UEFI and legacy BIOS systems, making this Windows 11 installer tool compatible across your entire hardware fleet.

    Step 7: Copy all installation files to the USB drive.

    • The final step is copying every file from the mounted ISO to your USB drive. In Command Prompt,
    • type: xcopy E:\*.* X: \ /E /F /H (replace E with your ISO drive letter and X with your USB drive letter).
  • Kareemiy's avatar
    Kareemiy
    Copper Contributor

    I can identify that the most suitable and versatile free Windows 11 installer tool for your specific needs, given the mix of old and new PCs, is Ven toy. It meets your requirements better than its main competitor, especially because you have to manage multiple PCs.

    Here is the step-by-step process to set up Ven toy for your ten company PCs.

    Step 1: Download and Install the Windows 11 installer tool

     

    Step 2: Configure Your USB Drive

    • Launch the Ven toy2Disk,exe application.
    • Ensure your USB drive is correctly selected in the "Device" dropdown menu.
    • Click the "Install" button.
    • A warning will appear: "The device will be formatted and all the data will be lost." Click "Yes" to proceed.
    • Once the installation is complete, you will see a "Congratulations!" message. Click "OK".

     

    Step 3: Copy the ISO Files

    • Open File Explorer and navigate to your USB drive. You will notice it has a generic name.
    • Simply drag and drop the Windows 11 ISO file (and any other ISO files you want, such as a Windows 10 installation ISO) directly onto the USB drive.
  • LunaScott's avatar
    LunaScott
    Iron Contributor

    Don't use Rufus for creating Windows 11 installer USB though it has earned a reputation it arguably doesn't fully deserve.

    The tool works fine in straightforward cases, but it makes a lot of quiet decisions on your behalf — partition scheme, file system, cluster size that can silently produce a USB that boots on one machine and fails on another. For anyone troubleshooting a failed install, Rufus gives you very little to work with because you didn't build it yourself.

    The diskpart method, by contrast, forces you to understand every step: how partitions are structured, why FAT32 matters for UEFI, why install.wim needs splitting. That knowledge transfers. If something breaks mid-install on a client's machine at 2 AM, you know exactly what to fix because you know exactly what you built. Rufus users tend to just re-run the tool and hope.

    There's also a dependency argument. Rufus requires downloading and trusting a third-party binary, whereas diskpart and DISM ship with every copy of Windows. In enterprise or air-gapped environments, pulling an external tool off GitHub is often not an option. The native method isn't glamorous, but it's always there, always the same, and leaves nothing to a black box.

  • MadisonGreen's avatar
    MadisonGreen
    Iron Contributor

    All Windows computers come with a built-in USB installer creation tool called Diskpart, a free command line utility.

    How to create a Windows 11 USB installer

    Launch diskpart

    diskpart

    Look at the list and identify your USB drive by its size. Note the disk number — you'll use it in the next step.

    list disk

    Select and wipe the USB drive。 Replace N with your USB disk number. This will erase all data on the drive.

    select disk N

    clean

    Creates a NTFS primary partition and marks it active.

    create partition primary

    select partition 1

    active

    format fs=ntfs quick label="WIN11"

    assign letter=E

    exit

    Mount the Windows 11 ISO (assign it a drive letter, e.g. D:), then copy all files to the USB. Adjust paths to match your ISO location and assigned letters.

    # Mount ISO via PowerShell (right-click ISO → Mount works too)

    powershell Mount-DiskImage -ImagePath "C:\path\to\Win11.iso"

    # Copy all ISO contents to USB (D: = ISO, E: = USB)

    xcopy D:\*.* E:\ /E /H /F

     

  • Yarisyoyo's avatar
    Yarisyoyo
    Bronze Contributor

    Easy2Boot is a multi-boot USB tool for Windows that supports BIOS, UEFI, and Secure Boot. It allows you to add multiple system ISO files directly without extracting them and can be used to create a windows 11 installer usb.

    How to Create a Windows 11 Installation USB Drive

    1. Requirements: 8GB+ USB drive, Windows 11 ISO, computer, and software
    2. Download: Download the self-extracting software package from the official website and extract it to your desktop
    3. Create the USB drive: Run the .exe file with administrator privileges, select the USB drive, and follow the prompts to confirm and write the bootloader
    4. Add the image: Copy the Windows 11 ISO to the software directory on the USB drive
    5. Boot Settings: Insert the USB drive into the target computer, press F12/F8/ESC during startup to select the USB drive as the boot device, and choose the Windows 11 installation option from the menu.

    It is ideal for users who need to maintain multiple systems. Flexible and stable, it can be created once and used long-term, supporting boot requirements for both new and older hardware, making it a practical tool for system installation and maintenance.

  • Eorku's avatar
    Eorku
    Iron Contributor

    You can use Universal USB Installer to create a windows 11 installer usb, which can be used to install or repair Windows 11.

    Instructions: Select Windows 11 from the list of supported versions, then select ISO. Choose the target USB drive from the drop-down menu, then click Create to begin.

    The software will format and copy files to create a windows 11 installer usb.

    It is ideal for creating installation media for multiple devices, performing a clean installation of Windows 11, or accessing the Windows Recovery Environment when needed.

  • Josew's avatar
    Josew
    Silver Contributor

    Universal MediaCreationTool is a modified open-source windows 11 installer tool based on Microsoft’s official utility, designed to bypass hardware checks.

    It allows you to create Windows 11 installation media without meeting the official requirements, and is a reliable option for those looking to use the windows 11 installer tool on unsupported devices.

    First, download the software from the official website. Then run it as an administrator.

    Select “Windows 11” from the options, then choose to create a USB drive or download an ISO file as needed. During this process, the software will automatically apply the necessary bypass settings.

    Once the process is complete, you will have a bootable USB drive or ISO file ready for installation.

    This is not supported by Microsoft, so it is only intended for users who understand the associated risks and wish to install Windows 11 on unsupported hardware.

    If you do not want to manually modify system files, you can try using this tool. It simplifies the process of bypassing detection, but you should still back up your data before proceeding.

    ps

    • Run the .bat file with administrator privileges to ensure full access to system resources.
    • Be sure to back up all important data before using the generated installation media.
    • Microsoft does not support installations on unsupported hardware, so you will not be eligible for technical support if any issues arise.
  • Debiora's avatar
    Debiora
    Iron Contributor

    This method uses the windows 11 installer tool to perform an in-place upgrade on an existing Windows 10 device. It preserves all local data and software, ideal for a quick system upgrade.

    How to Use the Windows 11 Installation Tool

    Step 1: While Windows 10 is running, insert the USB drive containing the installation files

    Step 2: Open File Explorer and navigate to the USB drive

    Step 3: Double-click setup.exe to launch the installer

    Step 4: Select “Keep my personal files and apps”

    Step 5: Follow the on-screen prompts and wait 30 to 60 minutes for the process to complete

    Once setup is complete, you will have Windows 11 with all your data preserved

    For standard devices, the in-place upgrade via USB works smoothly. You can switch directly to Windows 11 without having to reinstall applications or restore files.

    Pros

    • All personal files, applications, and system settings remain intact
    • Easy to use, with no need for complex BIOS settings
    • Saves a significant amount of time compared to a clean install

    Cons

    • Junk files from the old system remain on the hard drive
    • May have compatibility issues with some older programs
    • Takes longer to complete than a clean install
    • Cannot fully repair deep-seated system errors