Forum Discussion
How do you burn Windows 11 ISO to USB on Mac?
- Aug 14, 2025
In the past, you can burn ISO to USB with the Bootcamp app. However, it is no longer available on Apple Silicon and modern macOS version such as Monterey, Ventura or Sonoma. Fortunately, there is a couple of nice apps out there for doing this on Mac.
Here is a step-by-step tutorial with screenshots that shows you how to burn Windows 11 ISO to USB on any Mac:
https://www.smartpcguide.com/create-windows-bootable-usb-on-mac
I totally get your frustration – setting up a bootable USB for Windows 11 on a Mac can be a bit tricky, but it's definitely doable. Here’s a simple way to get it done using the dd command on your Mac. It’s a bit of a nerdy method, but it works like a charm. Here’s what you need to do:
Get Your USB Ready:
- Plug in your USB drive. Make sure it’s at least 8GB.
- Open Disk Utility (you can find it in Applications > Utilities).
- Select your USB drive and click on “Erase.”
- Format it as “MS-DOS (FAT)” and choose “Master Boot Record” for the scheme. Give it a name like “WINUSB” or whatever you prefer.
- Click “Erase” and wait for it to finish.
Find Your USB’s Device Identifier:
- Open Terminal (also in Applications > Utilities).
- Type diskutil list and press Enter.
- Look for your USB drive in the list and note its identifier (something like /dev/disk2).
Unmount the USB:
- In Terminal, type diskutil unmountDisk /dev/disk2 (replace /dev/disk2 with your USB’s identifier).
- Burn the ISO to the USB on Mac:
Now for the fun part. In Terminal, type the following command:
sudo dd if=/path/to/windows11.iso of=/dev/disk2 bs=1m- Replace /path/to/windows11.iso with the actual path to your Windows 11 ISO file, and /dev/disk2 with your USB’s identifier.
- Press Enter and wait. This can take a while, so be patient. You won’t see any output until it’s done.
- Eject the USB: Once the process is complete, type diskutil eject /dev/disk2 (again, replace /dev/disk2 with your identifier) and press Enter.
Boom! Your USB drive should now be a bootable Windows 11 installer. Just plug it into your PC and boot from the USB to start the installation process.
Thanks for instructions!
Note: if you don't see “Master Boot Record” scheme dropdown then in View menu select "Show all devices" (or just press Cmd + 2). Now there should be your UDB Drive with one or more children items. Use the top level item for Erase.