How to Download Windows 11 to USB on Mac | Terminal & Disk Utility

Creating a bootable Windows 11 USB on a Mac requires the official Microsoft ISO and a writing tool like Terminal’s dd or WinDiskWriter.

A USB flash drive is all you need to turn a Windows ISO into a bootable installer, and every Mac has the built-in tools to write it. You do not need a separate Windows PC to make this work. Here is the exact process to download Windows 11 to a USB on a Mac and prepare it for installation on a target PC.

What You Need Before You Start

Gathering the right components ahead of time prevents the most common failures. The table below lists the requirements based on official Microsoft guidance and community-tested Mac workflows.

Component Requirement Notes
USB Flash Drive 8 GB or larger All content on the drive will be erased during the write.
Mac Computer macOS Monterey or later Works on both Intel and Apple Silicon (M1–M3) Macs.
Windows 11 ISO Official Microsoft download The multi-edition ISO for x64 devices is the standard pick.
Internet Connection Stable connection The ISO file is roughly 5.6 GB, so a wired or strong Wi-Fi link helps.
Writing Tool Terminal (dd) or WinDiskWriter dd is built into every Mac; WinDiskWriter provides a GUI.
Target PC UEFI / Secure Boot capable Windows 11 typically requires UEFI firmware and Secure Boot support.
Power Source Plugged in A power interruption during the write can corrupt both the USB and the ISO.

Step 1: Download the Official Windows 11 ISO from Microsoft

Start at the source. Microsoft offers the Windows 11 ISO free to download directly from its official software download page. This is the only safe and reliable source for the installer image.

Navigate to the Download Windows 11 page on Microsoft’s website. Scroll down to the section labeled Download Windows 11 Disk Image (ISO). Use the dropdown to select Windows 11 (multi-edition ISO for x64 devices) and click Download. The download begins immediately, so keep your internet connection active until the roughly 5.6 GB file finishes.

Step 2: How to Format a USB for Windows 11 on a Mac

Before you can write the ISO, the USB drive must be formatted correctly. The Mac needs to prepare the drive using a partition scheme and file system that a standard PC firmware can recognize and boot from.

Connect your USB drive to the Mac. Open Disk Utility (found in Applications > Utilities). Select your USB drive from the left sidebar—make absolutely sure you have the right drive, not an internal volume. Click Erase. Use these exact settings:

  • Name: WINDOWS11 (short names avoid path issues later).
  • Format: MS-DOS (FAT) (FAT32).
  • Scheme: Master Boot Record (MBR).

Click Erase. The drive will be wiped, formatted, and ready to receive the Windows installer. If the target PC uses UEFI firmware, the MBR scheme is widely reported to work correctly for bootable installer media created on a Mac.

Step 3: Writing the ISO to the USB

You now have an ISO file and a formatted USB drive. The next step copies the installer image to the drive so it becomes bootable. The most reliable method uses Terminal’s built-in dd command, though GUI tools like WinDiskWriter work well if you prefer not to use the command line.

Using Terminal (dd):

  1. Open Terminal (from Applications > Utilities).
  2. Find your USB drive’s identifier by typing diskutil list. Look for your USB drive size to identify it (e.g., /dev/disk2).
  3. Unmount the drive: diskutil unmountDisk /dev/disk2 (replace disk2 with your identifier).
  4. Write the ISO image using dd. The command syntax is:
    sudo dd if=/path/to/Win11_English_x64.iso of=/dev/rdisk2 bs=4m conv=fdatasync
    Replace /path/to/Win11_English_x64.iso with the actual path to your downloaded ISO file, and rdisk2 with your raw disk identifier. The conv=fdatasync flag ensures all data is physically written to the drive before the command finishes.
  5. Enter your administrator password when prompted. There is no progress bar, and the terminal will appear to hang. Wait until the command prompt returns—this typically takes 10 to 20 minutes.
  6. Once the command finishes, safely eject the drive: diskutil eject /dev/rdisk2.

Using a GUI Tool (WinDiskWriter):
If the command line feels risky, WinDiskWriter handles the whole process automatically. You select your USB drive, select your ISO file, and click Write. It also solves the FAT32 file size limitation for the install.wim file automatically, which dd does not do.

Common Installation Pitfalls

Even with the right steps, a few issues can trip up the process. The table below covers the most frequent problems reported in community walkthroughs and how to resolve them.

Problem Why It Happens Solution
USB does not boot Wrong partition scheme (GPT instead of MBR) Re-format the USB using MBR scheme in Disk Utility.
“A media driver is missing” error during installation Corrupt ISO or using a USB 2.0 port Re-download the ISO from Microsoft; switch to a USB 3.0 port on the target PC.
install.wim file too large for FAT32 FAT32 has a 4 GB file-size limit Use WinDiskWriter (it handles splitting), or split the install.wim manually using Terminal.
dd finishes with “No space left on device” USB drive slightly smaller than ISO content Use a 16 GB or larger USB drive for the dd method.
Mac does not see the USB after writing Drive may need to be reformatted for macOS again Use Disk Utility to re-format as ExFAT or APFS after the Windows install is done.
Boot menu does not show the USB on the PC Fast Boot or Secure Boot settings blocking the USB Disable Fast Boot in the PC’s UEFI firmware; try the USB in a different port.

Your Bootable Windows 11 USB Checklist

Creating a bootable Windows 11 USB on a Mac is a straightforward task when you follow the order correctly. Use this checklist to confirm every step is complete before you move the USB to the target PC.

  • [ ] Windows 11 ISO downloaded from the official Microsoft page.
  • [ ] USB drive is 8 GB or larger (16 GB recommended for dd).
  • [ ] USB drive formatted to MS-DOS (FAT) with Master Boot Record scheme.
  • [ ] ISO written to USB using Terminal dd or WinDiskWriter.
  • [ ] USB drive safely ejected from the Mac.

The USB is now ready to boot and install Windows 11 on any compatible PC. If the drive does not appear in the target PC’s boot menu, check the UEFI firmware settings for Secure Boot and Fast Boot toggles, and verify the USB is connected directly to the motherboard’s port rather than a front-panel hub.

References & Sources