Skip to content

Instantly share code, notes, and snippets.

@ahkim
Last active June 22, 2016 03:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahkim/f843d590fe841b847b389c19da35def2 to your computer and use it in GitHub Desktop.
Save ahkim/f843d590fe841b847b389c19da35def2 to your computer and use it in GitHub Desktop.
Converting VMWare image to Hyper-V image
- This covers converting image to creating virtual machine from Hyper-V using converted image.
http://infrahouse.wordpress.com/2013/10/28/how-to-convert-vmware-based-virtual-machines-and-disks-vmdk-to-hyper-v-based-virtual-machines-and-disks-vhd-using-microsoft-virtual-machine-converter-solution-accelerator-mvmc/
PS C:\Program Files (x86)\Microsoft Virtual Machine Converter Solution Accelerator> .\mvdc.exe "G:\Application Data\vpc\VMWare\AK_SP_DoFSupport\SP_DoFSupport-cl1.vmdk" "D:\temp\AK_SP_DoFSupport.vhd"
- Above now no longer available. Instead, use Powershell way
http://wdbuc.com/blog/2015/03/09/convert-vmware-virtual-disks-to-hyper-v-virtual-disks-with-powershell-mvmc-3-0/
- I find this still doesn't work with oracle virtual box. In that case, you could also use the tool oracle virtual box provides
http://superuser.com/questions/483756/converting-a-vmdk-to-vhd
cd %programfiles%\Oracle\VirtualBoxvboxmanage clonehd "C:\tmp\file.vmdk" "C:\tmp\file.vhd" -format VHD
http://superuser.com/questions/483756/converting-a-vmdk-to-vhd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment