How to create Windows Server bootable USB media

Here are two easy ways to create a bootable USB to install Windows Server 2025, 2022, 2019, or 2016.

Windows Server create bootable USB
  • Learn two ways to create a Windows Server 2025 bootable USB drive.
  • Use Rufus for the quickest setup or Command Prompt for a manual approach.
  • The USB drive can be used for clean installations and in-place upgrades.
  • The same methods also work for Windows Server 2022, 2019, and 2016.

If you plan to perform a clean install of Windows Server 2025 (or Server 2022), you will need to create a bootable USB drive to start the server and continue the setup. You can complete this task in at least two ways, and this guide will show you how.

Unlike the desktop versions of Windows 11 and 10, Microsoft doesn’t offer a Media Creation tool to download the ISO or create a USB flash drive to install the server version of the operating system. However, it’s possible to create a bootable Windows Server USB drive using commands or third-party apps like Rufus.

This guide will teach you the steps to create a Windows Server USB flash drive. 

Create Windows Server 2025 bootable USB media with Rufus

To create a Windows Server 2025 bootable USB with Rufus, use these steps:

  1. Open the Windows Server 2025 download page.

  2. Click the “Download the ISO” link.

    Microsoft ISO download page

  3. Use the form to register and download the ISO file.

  4. Click the Download now button.

  5. Click the “ISO downloads 64-bit edition” option to download the file.

    Windows Server 2025 ISO download

  6. Open the Rufus website.

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

  8. Double-click the rufus.3.xx.exe file to launch the tool.

  9. Select the USB flash drive to create the bootable media under the “Device” section.

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

  11. Click the Select button.

    Rufus create Windows Server 2025 USB

  12. Select the “Windows Server 2025 ISO” file.

  13. Click the Open button.

  14. Select the “Standard Windows Installation” option under the “Image option” setting.

  15. Select the GPT option under the “Partition scheme” section.

  16. Select the UEFI (non-CSM) option under the “Target system” section.

  17. Under the “Volume label” section, confirm a name for the USB flash drive. For example, “Server 2025 USB.”

  18. Use the default settings for the File system and Cluster size options.

  19. Check the Quick format option.

  20. Check the “Create extended label and icon files” option.

  21. Click the Start button.

  22. Clear the “Customize Windows installation” settings.

  23. Click the OK button.

  24. Click the OK button again.

Once you complete the steps, you can proceed to install the server version of Windows on the device.

Create Windows Server 2025 bootable USB copying files to USB

To create a Windows Server 2025 bootable USB through Command Prompt, use these steps:

  1. Open Start.

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

  3. Type the following command to open DiskPart and press Enter:

    diskpart
  4. Type the following command to find out the USB flash drive and press Enter:

    list disk
  5. Type the following command to select the drive and press Enter:

    select disk 2

    In the command, replace “2” with the number of the USB removable drive.

  6. Type the following commands to erase the flash drive and press Enter:

    clean

    Windows Server clean USB with DiskPart

  7. Type the following command to create a primary partition on the drive and press Enter:

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

    select partition 1
  9. Type the following command to activate the partition and press Enter:

    active
  10. Type the following command to make the Windows Server 2025 USB flash drive bootable and press Enter:

    format FS=FAT32 quick
  11. Type the following command to set a drive letter and press Enter:

    assign letter=S

    In the command, change “S” to any available letter to use.

    DiskPart prepare USB for Windows Server files

  12. Type the following command to exit the DiskPart tool without closing Command Prompt and press Enter:

    exit
  13. Type the following command to mount the Windows Server 2025 ISO file and press Enter:

    PowerShell Mount-DiskImage -ImagePath "E:\SERVER_EVAL_x64FRE_en-us.iso"

    PowerShell mount Window Server ISO

    In the command, change the path to the location of the ISO file.

  14. (Optional) Type the following command to start DiskPart and press Enter:

    diskpart
  15. (Optional) Type the following command to find the drive letter for the mounted ISO file and press Enter:

    list volume

    DiskPart check mounted ISO letter

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

    exit
  17. Type the following command to access the Windows Server 2025 ISO file and press Enter:

    I:

    In the command, change “I” to the drive letter of the mounted ISO file.

  18. Type the following command to enter the “boot” folder in the ISO file and press Enter

    cd boot
  19. Type the following command to update the volume boot code on the flash drive and press Enter:

    bootsect /nt60 S:
  20. Type the following command to copy all the Windows Server 2025 files from the ISO to the USB flash drive and press Enter:

    xcopy G:\*.* S:\ /E /F /H

    In the command, change the “G” and “S” drive letters to the correct drive letters for the Windows Server 2025 ISO image and the USB drive, respectively.

After you complete the steps, you can use the USB flash drive to perform an in-place upgrade or clean installation of Windows Server 2025.

These introductions should also work to create a USB bootable drive for previous versions of Windows Server, including 2022, 2019, and 2016.

Server Decode’s Take

I almost always recommend using Rufus when creating bootable Windows Server media because it’s the fastest and least error-prone option for most people. The manual method is still valuable, though. If you’re managing servers regularly, knowing how to build installation media with built-in tools can save you when you’re working on a system without third-party utilities or internet access.

One thing I’ve noticed over the years is that Microsoft has never given Windows Server the same installation experience as the desktop version of Windows. There’s still no Media Creation Tool, which means administrators have to rely on the ISO and their preferred method to prepare installation media. It’s not a major problem, but it’s another reminder that Windows Server expects a more hands-on approach.

If you’re creating a USB drive once or twice, stick with Rufus. If you’re learning Windows Server or working in enterprise environments, it’s worth understanding the command-line method as well. It’s one of those skills that doesn’t come up every day, but when you need it, you’ll be glad you know it.

What are your thoughts on creating Windows Server installation media? Do you prefer Rufus or the manual approach? Let me know in the comments.