移动会议目录

在解除池授权之前,必须对旧池中的每个会议目录执行以下过程。

将会议目录移动到 2019 Skype for Business Server

  1. 打开Skype for Business Server命令行管理程序。

  2. 若要获取组织中会议目录的标识,请运行以下命令:

    Get-CsConferenceDirectory
    

    上述命令返回组织中的所有会议目录。 因此,你可能希望将结果限制为正在解除授权的池。 例如,如果要使用完全限定的域名 (FQDN) pool01.contoso.net 解除池的授权,请使用此命令将返回的数据限制为该池中的会议目录:

    Get-CsConferenceDirectory | Where-Object {$_.ServiceID -match "pool01.contoso.net"}
    

    该命令仅返回 ServiceID 属性包含 FQDN pool01.contoso.net 的会议目录。

  3. 若要移动会议目录,请对池中的每个会议目录运行以下命令:

    Move-CsConferenceDirectory -Identity <Numeric identity of conference directory> -TargetPool <FQDN of pool where ownership is to be transitioned>
    

    例如,若要移动会议目录 3,请使用此命令,将 Skype for Business Server 2019 池指定为 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 旧版和删除服务器角色 ,获取有关停用旧池的全面分步说明。

移动会议目录时,可能会遇到以下错误:

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.

当 Skype for Business Server 命令行管理程序需要更新的 Active Directory 权限集才能完成任务时,通常会发生此错误。 若要解决此问题,请关闭命令行管理程序当前实例,然后打开 shell 的新实例并重新运行 命令来移动会议目录。