首页 > 系统服务 > 详细

Convert a VMDK (VMWare) file to VHDX (Hyper-V)

时间:2019-02-02 12:51:51      阅读:224      评论:0      收藏:0      [点我收藏+]

https://www.meziantou.net/2016/09/09/convert-a-vmdk-vmware-file-to-vhdx-hyper-v

Microsoft provides a free tool to convert an existing virtual machine to a Hyper-V virtual machine: Microsoft Virtual Machine Converter.

This tool has a graphical interface allowing to carry out the most common operations. However, in some cases (often non-enterprise), you must use the supplied PowerShell cmdlet.

For example, the following script converts a virtual hard disk of type VMDK (VMWare) to a virtual disk in VHDX (Hyper-V) format :

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

$vmdk="sample.vmdk"
$vhdx="sample.vhdx"

ConvertTo-MvmcVirtualHardDisk -SourceLiteralPath $vmdk -DestinationLiteralPath $vhdx

 

按上述文章进行转换,虽然成功了,也启动了,但进不了系统。因为之前我的虚拟机系统是静态的,非DHCP的。

暂时没有想到解决办法。

Convert a VMDK (VMWare) file to VHDX (Hyper-V)

原文:https://www.cnblogs.com/luodengxiong/p/10348101.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!