Condividi tramite


Spostare le directory conferenze

Prima di disattivare un pool, è necessario eseguire la procedura seguente per ogni directory di conferenze nel pool legacy.

Per spostare una directory conferenze in Skype for Business Server 2019

  1. Aprire Skype for Business Server Management Shell.

  2. Per ottenere l'identità delle directory conferenza nell'organizzazione, eseguire il comando seguente:

    Get-CsConferenceDirectory
    

    Il comando precedente restituisce tutte le directory conferenza dell'organizzazione. Per questo motivo, è consigliabile limitare i risultati al pool da rimuovere. Ad esempio, se si sta disattivando il pool con il nome di dominio completo (FQDN) pool01.contoso.net, usare questo comando per limitare i dati restituiti alle directory conferenza da tale pool:

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

    Questo comando restituisce solo le directory conferenza in cui la proprietà ServiceID contiene l'FQDN pool01.contoso.net.

  3. Per spostare le directory conferenza, eseguire il comando seguente per ogni directory di conferenze nel pool:

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

    Ad esempio, per spostare la directory conferenze 3, utilizzare questo comando, specificando un pool di Skype for Business Server 2019 come TargetPool:

    Move-CsConferenceDirectory -Identity 3 -TargetPool "pool02.contoso.net"
    

    Se si vogliono spostare tutte le directory conferenza in un pool, usare un comando simile al seguente:

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

Scarica La disinstallazione della versione legacy Microsoft e la rimozione dei ruoli del server per istruzioni dettagliate complete sulla rimozione dei pool legacy.

Quando si spostano le directory delle conferenze, potrebbe verificarsi l'errore seguente:

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.

Questo errore si verifica in genere quando Skype for Business Server Management Shell richiede un set aggiornato di autorizzazioni di Active Directory per completare un'attività. Per risolvere il problema, chiudere l'istanza corrente di Management Shell, quindi aprire una nuova istanza della shell ed eseguire nuovamente il comando per spostare la directory di conferenze.