Copy disc image to USB device under Windows

6,868

Solution 1

imgburn too will burn .iso files

Solution 2

dd for windows can read or write to raw block devices (in unix terms). It's GPL, but you can just call its command line behind the scenes.

dd if=c:\temp\foo.img of=\\.\Volume{01234567-89ab-cdef-0123-456789abcdef} bs=1M

A more specific program is Ubuntu's Win32 Disk Imager (usage example). It has a GUI. It's GPL, so you can't use it in a proprietary program.

Solution 3

If it is a standard ISO image any burning software can do it in Windows

http://cdburnerxp.se/en/home

http://www.nero.com/eng/downloads-nbl-free.php

http://www.dkszone.net/6-best-free-dvd-cd-burning-software

Share:
6,868

Related videos on Youtube

bookmarc
Author by

bookmarc

Updated on September 17, 2022

Comments

  • bookmarc
    bookmarc almost 2 years

    I'm looking for a tool which can "burn" image files created with dd under Linux on Windows. I send these images to clients so it should be as simple as possible to use. Having something that can be integrated into our proprietary interface would definitely be an added bonus.

    What do you guys use for such tasks?

    N.B. I'm not necessarily looking at something free here, it could be a paying solution.

    Regards,

    Marc

    • bookmarc
      bookmarc over 13 years
      BTW, by "burning", I mean to byte-copy the file on a storage device (i.e.: USB storage device).
    • Nemo
      Nemo over 9 years
      "Burn" was definitely the wrong word to use, since most of these answers address burning a CD. Luckily @Gilles knew what you meant :-)