会議ディレクトリを移動する
トピック最終更新日時: 2014-05-28
プールを使用停止する前に、Lync Server 2010 プール内の各会議ディレクトリに対して次の手順を実行する必要があります。
会議ディレクトリを Lync Server 2013 に移動するには
Lync Server 管理シェルを開きます。
組織内の会議ディレクトリの ID を取得するには、次のコマンドを実行します。
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"
Lync 2010 プールの使用停止に関する包括的な詳細な手順については、「Microsoft Lync Server 2010 のアンインストールとサーバーロールの削除」(ダウンロード元 https://go.microsoft.com/fwlink/p/?linkId=246227) のドキュメントを参照してください。
会議ディレクトリを移動すると、次のエラーが発生する可能性があります。
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 の現在のインスタンスを閉じてから、シェルの新しいインスタンスを開き、会議ディレクトリを移動するためにコマンドを再実行します。