Topic Last Modified: 2011-04-06

When you remove a Front End Server or Front End pool, you must move common area phone objects to another Registrar.

Move common area phone contact objects

  1. Log on to the computer where Lync Server Management Shell is installed as a member of the Domain Admins group or the RTCUniversalServerAdmins group.

  2. Start the Lync Server Management Shell: Click Start, click All Programs, click Microsoft Lync Server 2010, and then click Lync Server Management Shell.

  3. Type:

    Copy Code
    Get-CsCommonAreaPhone | Where-Object {$_.RegistrarPool -match "<SourceServerPoolFqdn>"} | Move-CsCommonAreaPhone -Target <DestinationServerPoolFqdn>
    

    Where <SourceServerPoolFqdn> is the Lync Server 2010 Registrar where the common area phone objects are currently set, and <DestinationServerPoolFqdn> is the Lync Server Registrar where you want to move the objects.

  4. Run the command for each Front End pool and Standard Edition Front End Server as needed.

Move analog device contact objects

  1. Log on to the computer where Lync Server Management Shell is installed as a member of the Domain Admins group or the RTCUniversalServerAdmins group.

  2. Start the Lync Server Management Shell: Click Start, click All Programs, click Microsoft Lync Server 2010, and then click Lync Server Management Shell.

  3. Type:

    Copy Code
    Get-CsAnalogDevice -Filter {RegistrarPool -eq "<SourceServerPoolFqdn>"} | Move-CsAnalogDevice -Target <DestinationServerPoolFqdn>
    

    Where <SourceServerPoolFqdn> is the Lync Server Registrar where the analog device contact objects currently are set, and <DestinationServerPoolFqdn> is the Lync Server Registrar where you want to move the objects.

  4. Run the command for each Front End pool and Standard Edition Front End Server as needed.