Import ovf and/or vmdk to Hyper-V

I have an OVF and a VMDK file. It was exported from VMWare. How can I import that into a Hyper-V? I do not have access to the VMWare server. I don't have System Center - just Hyper-V Manager. Any ideas?

1

2 Answers

download

import module using powershell

Import-Module "C:\Program Files\Microsoft Virtual Machine Converter\MvmcCmdlet.psd1"

convert

ConvertTo-MvmcVirtualHardDisk -SourceLiteralPath C:\mypath\mydisk.vmdk -VhdFormat vhd -DestinationLiteralPath C:\mynewdisk.vhd

0

You can convert the OVF exported from VMware into a Hyper V host by using the Microsoft standalone software called Microsoft Virtual Machine Converter . You can download the OVF and convert it into Hyper V config folder which can be imported back into Hyper V. For further details, check this link :

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like