nguyenvulong / QA

The Unlicense
0 stars 0 forks source link

[windows] create a windows install USB on MacOS #78

Open nguyenvulong opened 7 months ago

nguyenvulong commented 7 months ago

steps

  1. download an ISO file of windows from the official website
  2. mount the ISO file by double-clicking on the downloaded ISO file
  3. plug in the USB, format it with exFAT
  4. open the Terminal, run diskutil list, it will show the external drive, something like dev/diskX, my case X = 4
  5. (if step 5 fails (device busy), you should run diskutil umount /dev/disk4s1 and diskutil umount /dev/disk4s2 to umount the partitions first)
  6. run sudo dd if=/path/to/windows11.iso of=/dev/diskX bs=1m. BE CAREFUL.
  7. wait until it finishes, then eject the USB, run diskutil eject /dev/diskX

reference

https://www.pugetsystems.com/support/guides/w11-usb-macos/

ghost commented 7 months ago

Good 😊