Topic Last Modified: 2011-03-23

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 which 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

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

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

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

    Copy Code
    Set-CsNetworkSite -Identity "ns2" -NetworkRegionID "nr1" -LocationPolicy "Redmond"
    

To assign a location policy to a new network site

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

  • 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 "ns1" -NetworkRegionID "nr1" -LocationPolicy "Redmond"