【发布时间】:2022-06-10 17:53:38
【问题描述】:
在我的 powershell 窗口中,它在管理员下运行。我运行此命令将 VM 从迁移源(2016 服务器)移动到迁移目标(2022 服务器):
PS C:\> Move-VM -Name "WIN10A" -DestinationHost SRV2022 -IncludeStorage -DestinationStoragePath E:\HV
这是出现的错误:
Move-VM : Virtual machine migration operation failed at migration destination.
Virtual machine migration operation for 'WIN10A' failed at migration destination
'SRVHV.domain.local'. (Virtual machine ID 6A2E2C6A-266C-4903-85D8-674090805D1E
At line:1 char:1
+ Move-VM -Name "WIN10A" -DestinationHost SRVHV -IncludeStorage -Desti ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (:) [Move-VM], VirtualizationException
+ FullyQualifiedErrorId : ObjectNotFound,Microsoft.HyperV.PowerShell.Commands.MoveVM
我为 VM 的处理器打开了兼容性。 我还从虚拟机中删除了网络适配器,但仍然出现错误!
使用 GUI 我得到这个错误:
The virtual machine cannot be moved to the destination computer. The hardware on the destination computer is not compatible with the hardware requirements of this virtual machine.
当我运行这个命令时,我得到 {21024} 的不兼容性:
Compare-VM -Name WIN10A -DestinationHost SRVHV
感谢任何帮助。
【问题讨论】:
标签: powershell hyper-v