Site icon Winhelponline

Create Bootable USB Disk from ISO Using Rufus or Windows USB/DVD Tool

Do you own a Netbook or a small form-factor computer without a DVD drive, but want to install Windows (7, 8, 10, or 11) on it? This article explains the different methods to create a bootable USB Windows Setup disk.

Follow one of the three methods in this article to create a USB Windows Setup Disk from Windows ISO.

Create USB Bootable Windows Setup Disk from ISO:

  1. Using Rufus: An Advanced Tool to Create Bootable USB Drives (For both BIOS/UEFI systems)
  2. Using built-in Windows command-line — without 3rd party software
  3. Using the Windows USB/DVD Download Tool (Only for legacy BIOS/MBR-based systems)
  4. Media Creation Tool can download ISO and create a USB setup disk (opens another article page)

Create Bootable USB Flash Drive from ISO

Option 1: Rufus: An Advanced Tool to Create Bootable USB Drive

Also, look at an advanced ISO/DVD to USB tool named Rufus. This utility helps format and create bootable USB flash drives, such as USB keys/pen drives, memory sticks, etc.

Rufus – ISO to USB boot media creator.

 

For UEFI-based computers, choose GPT in the Partition scheme

Rufus is extremely fast, and this tool can be especially useful for cases where:


Option 2: Create USB Setup Disk without using any software

Before you begin, note that you don’t need any software to create bootable USB media for UEFI-based computers. For UEFI-based computers, all you need to do to make a USB Windows setup disk is to format the USB drive as FAT32 (instead of NTFS), mount the Windows Setup ISO to a drive, and copy the entire contents of the mounted drive to the USB drive.

This is sufficient to make the drive bootable in UEFI-based computers.

For legacy (BIOS/MBR) systems, follow these instructions to create a Windows 10 Setup USB disk.

  1. Insert the USB flash disk into the drive.
  2. Open admin Command Prompt run the diskpart command.
  3. Run the list disk command to see the list of drives. Carefully, note down the disk # for your USB media. It’s better to disconnect additional external drives before running this command, for easy identification of the USB drive.
  4. In my case, disk 3 is the USB drive, so I type the following command to select the disk:
    select disk 3
  5. Then, run the following command to completely erase the contents of the USB disk:
    clean

  6. Then run the following commands:
    create partition primary
    select partition 1
    active
    format fs=ntfs quick

    Important note: If your computer supports Unified Extensible Firmware Interface (UEFI), you should format the USB flash drive as FAT32 rather than as NTFS. To format the partition as FAT32, type format fs=fat32 quick, and then click ENTER.

  7. Once done, run the assign command, and then type exit to come out of the Diskpart command environment. Now, Windows reassigns a drive letter (G:\ in this example) for your USB drive.
  8. Mount the Windows Setup ISO by double-clicking on it.
  9. Copy the entire contents of the mounted ISO drive (H:\) to your USB flash drive (G:\)
  10. Switch to the admin Command Prompt window and run the following commands, where H:\ is the drive letter of the mounted Windows ISO and G:\ is the USB drive letter:
    H:
    cd\boot
    bootsect.exe /nt60 G:

    You’ll see the following output:

    Target volumes will be updated with BOOTMGR compatible bootcode.
    
    G: (\\?\Volume{589fd5fb-bd84-11e8-a90e-1866da06b846})
    
        Successfully updated FAT32 filesystem bootcode.
    
    Bootcode was successfully updated on all targeted volumes.

    The bootsect.exe command-line builds the boot sector code in the specified partition.

That’s it! The USB drive is now bootable, and you should be able to install Windows from it.


Option 3: Using Windows USB/DVD Download Tool

Microsoft’s Windows USB/DVD Download Tool takes an ISO image and creates a bootable USB device that can be used to install Windows on legacy (BIOS/MBR-based) systems. The utility can create a Windows installation DVD from the ISO file as well.

Important: The Windows USB/DVD tool formats the disk as NTFS, which means that it will not work on UEFI-based systems. For UEFI-based systems, use Method 1 (Rufus), or format the disk as FAT32 and manually copy the Windows setup files (as in Method 2.)

Download the Windows USB/DVD Download Tool. To copy the ISO image to a USB flash drive, ensure that the drive has sufficient disk space. Different OSes have different ISO file sizes. Be sure to use a drive with a capacity of 8 GB minimum, as Windows 10/11 ISO file sizes grow every build/version; Windows 10 Fall Creators Update ISO size is 4.4 GB, and Windows 11 Build 10.0.22000 ISO is 5.12 GB.

Although the caption reads “Windows 7 USB/DVD Tool”, it works flawlessly on Windows 10/11.

Please insert the USB flash drive (or DVD media) into the drive beforehand.

Alternate download link for the utility is here:

https://www.majorgeeks.com/files/details/microsoft_windows_7_usbdvd_download_tool.html

The tool works only for the Windows ISO image downloaded from Microsoft.

I hope this guide proved helpful in creating a bootable USB Windows Setup disk using various methods.

Exit mobile version