移动会议目录
上次修改的主题: 2014-05-28
在解除池授权之前,必须为 Lync Server 2010 池中的每个会议目录执行以下过程。
将会议目录移动到 Lync Server 2013
打开 Lync Server Management Shell。
若要获取组织中会议目录的标识,请运行以下命令:
Get-CsConferenceDirectory
前面的命令返回组织中的所有会议目录。 因此,你可能希望将结果限制为要停用的池。 例如,如果使用完全限定的域名 (FQDN) pool01.contoso.net 停用池,请使用此命令将返回的数据限制为该池中的会议目录:
Get-CsConferenceDirectory | Where-Object {$_.ServiceID -match "pool01.contoso.net"}
该命令仅返回 ServiceID 属性包含 FQDN pool01.contoso.net 的会议目录。
若要移动会议目录,请为池中的每个会议目录运行以下命令:
Move-CsConferenceDirectory -Identity <Numeric identity of conference directory> -TargetPool <FQDN of pool where ownership is to be transitioned>
例如,若要移动会议目录 3,请使用此命令,将 Lync Server 2013 池指定为 TargetPool:
Move-CsConferenceDirectory -Identity 3 -TargetPool "pool02.contoso.net"
如果要移动池上的所有会议目录,请使用类似于以下内容的命令:
Get-CsConferenceDirectory | Where-Object {$_.ServiceID -match "pool01.contoso.net"} | Move-CsConferenceDirectory -TargetPool "pool02.contoso.net"
请参阅文档“卸载 Microsoft Lync Server 2010 和删除服务器角色” (可从 https://go.microsoft.com/fwlink/p/?linkId=246227) 下载,以获取有关解除 Lync 2010 池的全面分步说明。
移动会议目录时,可能会遇到以下错误:
WARNING: Move operation failed for conference directory with ID "5". Cannot perform a rollback because data migration might have already started. Retry the operation.
WARNING: Before using the -Force parameter, ensure that you have exported the conference directory data using DBImpExp.exe and imported the data on the target pool. Refer to the DBImpExp-Readme.htm file for more information.
Move-CsConferenceDirectory : Unable to cast COM object of type 'System._ComObject' to interface type 'Microsoft.Rtc.Interop.User.IRtcConfDirManagement'.
This operation failed because the QueryInterface call on the COM component for the interface with SID '{4262B886-503F-4BEA-868C-04E8DF562CEB}' failed due to the following error: The specified module could not be found.
当 Lync Server Management Shell 需要更新的一组 Active Directory 权限才能完成任务时,通常会发生此错误。 若要解决此问题,请关闭 Management Shell 的当前实例,然后打开 shell 的新实例并重新运行该命令以移动会议目录。