Disk image format converter

Rigo

Active Member
Reaction score
173
Location
Australia
I need to convert a .BIN image produced with RapidSpar to either .VHD .VHDX .CIB .CIBX format so I can use my go-to software (Casper from Future Systems) to restore to another drive.
Unless there is some better option out there.
 
That's the only link I have, but I haven't used it for years.

Maybe use quemu?
Download and extract the .zip, open cmd prompt and cd C:\QEMU (or whereever you extracted it to)
To Vhd.
qemu-img.exe convert -f raw -O vpc C:\path\to\diskimage.bin C:\path\to\converted.vhd (change paths etc accordingly)
To Vhdx.
qemu-img.exe convert -f raw -O vhdx C:\path\to\diskimage.bin C:\path\to\converted.vhdx

You can right click and mount it in Explorer. Casper should see it too.

I have a batch file somewhere for converting if you want that?
 
Back
Top