Forum Discussion
Briarouu
May 29, 2026Copper Contributor
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 installe...
Dukesom
May 29, 2026Copper 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).