会議ディレクトリを移動する

プールを使用停止する前に、レガシ プール内の各会議ディレクトリに対して次の手順を実行する必要があります。

会議ディレクトリを Skype for Business Server 2019 に移動するには

  1. Skype for Business Server管理シェルを開きます。

  2. organization内の会議ディレクトリの ID を取得するには、次のコマンドを実行します。

    Get-CsConferenceDirectory
    

    上記のコマンドは、organization内のすべての会議ディレクトリを返します。 そのため、使用停止中のプールに結果を制限することが必要になる場合があります。 たとえば、完全修飾ドメイン名 (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 アクセス許可のセットが必要な場合に発生します。 問題を解決するには、管理シェルの現在のインスタンスを閉じ、シェルの新しいインスタンスを開き、コマンドを再実行して会議ディレクトリを移動します。