Create an image file from floppy disk #
or write an image file to floppy disk with RawWrite:
- Free and open source software by the author of dd for Windows*
- Read and write support for 1.44MB floppies only
- Tested under Windows 95 through XP
- To create an image from a physical floppy disk, use the "Read" tab.
* dd can of course be used instead of RawWrite for creating and writing floppy images (among other tasks); here are a few examples from the author's site:
- Make an image of a floppy disk:
dd if=\\.\a: of=c:\temp\disk1.img bs=1440k
- Write the image back to a floppy disk:
dd if=c:\temp\disk1.img of=\\.\a: bs=1440k
- Rip an .iso from a CD:
dd if=\\?\Device\CdRom0 of=c:\temp\disc1.iso bs=1M
- Read a partition from a USB memory device:
dd if=\\.\Volume{c18588c0-02e9-11d8-853f-00902758442b} of=c:\temp\usb1.img bs=1M
- Read the entire USB memory device:
dd if=\\?\Device\Harddisk1\Partition0 of=c:\temp\usb2.img bs=1M --size --progress
/windows | Sep 07, 2014
Subscribe or visit the archives.