标签:显示 power citrix 需要 获取 published null get 名称
使用powershell:asnp citrix.*
使用下面的命令获取需要改名的交付组UID
Get-BrokerDesktopGroup -name "请改成交付组名称"
使用下面的命令将交付组中的所有计算机的“PublishedName”属性设置为null
Get-BrokerMachine -DesktopGroupUID 交付组UID | Set-BrokerMachine -PublishedName $Null
最后使用下面的命令更改交付组的发布名称
Get-BrokerDesktopGroup -UID 交付组UID | Set-BrokerDesktopGroup -PublishedName “新交付组名称”
标签:显示 power citrix 需要 获取 published null get 名称
原文地址:http://blog.51cto.com/aiguo/2159459