共用方式為


移動會議目錄

在解除委任集區之前,您必須為舊資料庫中的每個會議目錄執行下列程式。

若要將會議目錄移至 商務用 Skype Server 2019

  1. 開啟商務用 Skype 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 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 Server管理命令介面需要一組更新的 Active Directory 許可權才能完成工作時,通常會發生此錯誤。 若要解決問題,請關閉目前的管理命令介面實例,然後開啟殼層的新實例,然後重新執行命令以移動會議目錄。