Topic Last Modified: 2013-02-24

The following examples show how to add the Redmond location policy defined in Create Location Policies to an existing network site and how to create a new network site that uses the Redmond location policy.

For details about working with network sites, see the Lync Server Management Shell documentation for the following cmdlets:

To assign a location policy to an existing network site

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

  2. Run the following cmdlets to modify an existing network site.

    Assign the Redmond tagged Location policy to an existing network site named Redmond.

    Copy Code
    Set-CsNetworkSite -Identity "Redmond" -NetworkRegionID "NorthAmerica" -LocationPolicy "Redmond"
    

To assign a location policy to a new network site

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

  2. Run the following cmdlet to create a new network site.

    Create a new network site in the network region and assign the Redmond tagged Location policy.

    Copy Code
    New-CsNetworkSite -Identity "Redmond" -NetworkRegionID "NorthAmerica" -LocationPolicy "Redmond"