Copy disc image to USB device under Windows

2

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

Posted 2010-12-13T16:19:29.990

Reputation: 141

"Burn" was definitely the wrong word to use, since most of these answers address burning a CD. Luckily @Gilles knew what you meant :-) – Nemo – 2015-03-25T16:10:52.880

1BTW, by "burning", I mean to byte-copy the file on a storage device (i.e.: USB storage device). – bookmarc – 2010-12-13T18:06:11.177

Answers

2

imgburn too will burn .iso files

therobyouknow

Posted 2010-12-13T16:19:29.990

Reputation: 3 596

1

Moab

Posted 2010-12-13T16:19:29.990

Reputation: 54 203

1

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.

Gilles 'SO- stop being evil'

Posted 2010-12-13T16:19:29.990

Reputation: 58 319

0

If they're using Windows 7, they can burn the ISOs natively in the OS. If they're using Vista they can install Imgburn.

Chris Harrod

Posted 2010-12-13T16:19:29.990

Reputation: 269