Is there a way to make Windows 7 install .iso onto USB drive from OSX?

17,444

Of course, the command line is always there to help.

  • Insert the USB flash drive and run the command diskutil list to find out the disk name, we'll use /dev/disk1 as an example.

  • Now unmount the disk using diskutil unmountDisk /dev/disk1

  • Now we are ready to copy the ISO to the device:

dd if=/path/to/Win7.iso of=/dev/disk1 bs=8192
Share:
17,444

Related videos on Youtube

Daniel Fischer
Author by

Daniel Fischer

Updated on September 17, 2022

Comments

  • Daniel Fischer
    Daniel Fischer almost 2 years

    I copied my windows 7 cd to a ISO and trying to source the image onto my USB drive from OSX. So far it doesn't seem like it's possible with disk utility. Is there something else I can do to make this work?

  • Daniel Fischer
    Daniel Fischer over 13 years
    Awesome, I'll try this thank you. How do I mount it though? I think you missed that... I might be confused on terminology. Don't you have to mount to copy it? Also what about NTFS?
  • John T
    John T over 13 years
    If the disk is preformatted as NTFS it should still be able to read/write to it. You do not have to mount it as you are writing to the device.
  • Meekohi
    Meekohi over 11 years
    Does not create a bootable USB drive. Wasted 2 hours of my night.
  • Pierre de LESPINAY
    Pierre de LESPINAY about 9 years
    Not bootable for PC nor for Mac
  • norman_h
    norman_h over 4 years
    Not bootable when performed with OSX 10.15.3