Topic Last Modified: 2013-02-23

At the time you deployed your Edge Servers and enabled federation for your organization, you should have specified whether to automatically send the archiving disclaimer to federated partners. If you archive external communications, you should enable the sending of an archiving disclaimer. Use the procedure in this topic to change that configuration.

Note:
The following procedure assumes that you have already enabled federation for your organization. For details about enabling federation, see Enable or Disable Remote User Access in the Deployment documentation or the Operations documentation.

To enable or disable sending of an archiving disclaimer to federated partners

  1. From a user account that is a member of the RTCUniversalServerAdmins group (or has equivalent user rights), or is assigned to the CsAdministrator role, log on to any computer in your internal deployment.

  2. Open a browser window, and then enter the Admin URL to open the Lync Server Control Panel. For details about the different methods you can use to start Lync Server Control Panel, see Open Lync Server Administrative Tools.

  3. In the left navigation bar, click External User Access, click Access Edge Configuration.

  4. On the Access Edge Configuration tab, click Global, click Edit, and then click Show details.

  5. In Edit Access Edge Configuration, under Enable communications with federated users, select or clear the Send archiving disclaimer to federated partners check box to enable or disable automatically sending the archiving disclaimer.

  6. Click Commit.

To enable federated users to collaborate with users in your Lync Server 2013 deployment, you must have also configured at least one external access policy to support federated user access. For details, see Manage XMPP Federated Partners for Your Organization in the Deployment documentation or the Operations documentation. For details about controlling access for specific federated domains, see Configure Support for Allowed External Domains in the Deployment documentation or Operations documentation.

Enabling or Disabling the Archiving Disclaimer by Using Windows PowerShell Cmdlets

The use of the archiving disclaimer can be managed by using Windows PowerShell and the Set-CsAccessEdgeConfiguration cmdlet. This cmdlet can be run either from the Lync Server 2013 Management Shell or from a remote session of Windows PowerShell. For details about using remote Windows PowerShell to connect to Lync Server, see the Lync Server Windows PowerShell blog article "Quick Start: Managing Microsoft Lync Server 2010 Using Remote PowerShell" at http://go.microsoft.com/fwlink/p/?linkId=255876.

To enable the archiving disclaimer

  • To enable the archiving disclaimer, set the value of the EnableArchivingDisclaimer property to True ($True):

    Copy Code
    Set-CsAccessEdgeConfiguration -EnableArchivingDisclaimer $True
    

To disable the archiving disclaimer

  • To disable the archiving disclaimer, set the value of the EnableArchivingDisclaimer property to False ($False):

    Copy Code
    Set-CsAccessEdgeConfiguration -EnableArchivingDisclaimer $False