问题现象:VDI桌面从一个POOl迁移到另一个POOl或从一个托管迁移到另一个托管出现电源管理异常。
问题原因:原因为VDI对应先前所在的托管,每个托管都有一个ID,需要将VDI的托管ID更新到新托管。
解决方法:
1.使用Get-BrokerMachine -DNSname 计算机名
2.查看新托管连接的uid
Get-BrokerHypervisorConnection
3.修改迁移的虚拟机到新的连接
Get-BrokerMachine -DNSName xxx | Set-BrokerMachine -HypervisorConnectionUid x
4.查看新连接的路径 #PSpath
dir XDHyp:\Connections\
5.更新新的托管连接
Update-HypHypervisorConnection -LiteralPath xxx #上面的pspath
原文地址:https://blog.51cto.com/4964151/2484670
时间: 2024-10-16 00:09:09