Soft

How to Convert Hyper-V VHD/VHDx to VMWare Workstation VMDK

Obtaining QEMU-img

ADVERTISEMENT

If you ever find yourself in a situation where for example you want to test out things in a specific VM in VMWare Player or your dedicated Hyper-V hypervisor blew up, and all that was left after the carnage was VHD images, you might be considering switching to Xen,Proxmox or ESXi. There are many commercial and paid solutions for doing the conversion, but there’s always the free way of doing it if you don’t fear the command prompt or terminal.

ADVERTISEMENT

Obtaining QEMU-img

QEMU is capable of converting VM image files by using qemu-img utility.
To obtain it on Linux, install QEMU or just qemu-utils from your system repositories. Yes works with WSL as well. To get it for Windows, you’ll have to get it from here. Make sure you leave the tools enabled in the setup. You will find qemu-img.exe in the root directory where you installed it.

Conversion

I’d recommend looking at the help file by using qemu-img -h. My command does not include a progress bar, so you should look at it if you want to add one yourself.

To start the conversion, call qemu-img convert vm-from-hyperv.vhd -O vmdk vm-to-vmware.vmdk.

convert flag sets the utility to convert it and the -O vmdk flag sets an option to convert it to vmdk.

Here’s the command I had to run:

qemu-img.exe convert D:\MYPC.vhdx -O vmdk D:\mypc-vmware.vmdk

Source
thunderysteak.github.io
ADVERTISEMENT
Subscribe
Notify of
guest

0 Comments
Inline Feedbacks
View all comments