我跑:
Move-ResourcePool -ResourcePool testresource -Destination myhost.mydomain.com
得到:
Move-ResourcePool:无法将参数'Destination'绑定到目标。 异常设置“目标”:“无法转换类型为VMware.VimAutomation.ViCore.Util10.Surrogate.DefaultValue.StringWrapperResourcePool的对象”以键入'VMware.VimAutomation.ViCore.Interop.V1.Inventory.VIContainerInterop'。“
答案 0 :(得分:0)
也许它试图将您的-Destination
字符串翻译成对象。好奇,如果这更好用吗?
Move-ResourcePool -ResourcePool testresource -Destination (Get-VMHost myhost.mydomain.com)