This is a quite challenging task on Apple Silicon Mac due to the missing support of NTFS writing on Mac. Here are three easy ways to help you create windows 11 bootable usb on mac if Etcher for Mac does not work. For tech newbie, try the first solution. For advanced users, go with the latest command line approach.
Method 1: ISOKit app
ISOKit is a lightweight tool designed to create bootable USB drives from ISO files on macOS. It is simple to use and works well for creating Windows or Linux installation media.
Steps:
- Download and install ISOKiton your Mac.
- Insert a USB flash drive (8GB or larger recommended).
- Launch ISOKit and choose the ISO file you want to burn.
- Select the connected USB drive as the target disk.
- Click Start to begin creating the bootable USB.

Why it’s good
- Very easy interface
- Works with most Windows and Linux ISO files
- No command-line knowledge required
Method 2: BootCamp
Another option is Boot Camp Assistant, which is already included in macOS. Although it is mainly designed to install Windows on Intel Macs, it can also create a Windows installation USB.
https://support.apple.com/guide/bootcamp-assistant/install-windows-newer-mac-boot-camp-bcmp173b3bf2/6.1/mac/26
Steps:
- Open Boot Camp Assistant from Applications → Utilities.
- Choose the option Create a Windows install disk.
- Select your Windows ISO file.
- Insert a USB flash drive and select it as the destination.
- Boot Camp will automatically format the drive and copy installation files.

Advantages
- Built into macOS
- Stable and reliable for Windows installers
- No extra software needed
Limitations
- Only works for Windows installation media
- Not available on Apple Silicon Macs
Method 3: Command Line with Wimlib
The wimlib-imagex utility can split a large install.wim file into smaller .swm parts so they fit on a FAT32 USB drive. This avoids the common 4GB file size limitation that often causes problems when making Windows installation USBs manually on macOS.
Although this method requires using Terminal, it is quite reliable once the commands are executed correctly. Many advanced users prefer this approach when graphical tools like Etcher fail.
Install wimlib using Homebrew:
brew install wimlib
Mount the Windows ISO file:
hdiutil mount Win11.iso
Format the USB drive as FAT32:
diskutil eraseDisk MS-DOS WINUSB MBR /dev/diskX
Copy all files from the mounted ISO to the USB drive except install.wim.
Split the WIM file into smaller parts:
wimlib-imagex split /Volumes/CCCOMA_X64FRE_EN-US_DV9/sources/install.wim /Volumes/WINUSB/sources/install.swm 3800
Wait for the process to complete and eject the USB drive.
Pros
- Very powerful and flexible
- Works without additional software
- Supports many ISO images
Cons
- Command-line knowledge required
- Wrong disk selection can erase data