Topic Last Modified: 2013-02-22

The mobility policy is one of the individual settings of a user account that you can configure in Lync Server Control Panel or Lync Server Management Shell.

To assign a per-user mobility policy with Lync Server Control Panel

  1. From a user account that is assigned to the CsUserAdministrator role or 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 Users.

  4. Use one of the following methods to locate a user:

    • In the Search users box, type all or the first portion of the display name, first name, last name, Security Accounts Manager (SAM) account name, SIP address, or line Uniform Resource Identifier (URI) of the user account, and then click Find.

    • If you have a saved query, click the Open query icon, use the Open dialog box to retrieve the query (a .usf file), and then click Find.

  5. (Optional) Specify additional search criteria to narrow the results:

    1. Click Add Filter.

    2. Enter the user property by typing it or by clicking the arrow in the drop-down list to select the property.

    3. In the Equal to drop-down list, click the operator (for example, Equal to or Not equal to).

    4. Depending on the user property you selected, enter the criteria you want to use to filter the search results by typing it or by clicking the arrow in the drop-down list.

      Tip:
      To add additional search clauses to your query, click Add Filter.
    5. Click Find.

  6. Click a user in the search results, click Action, and then click Assign policies.

    Tip:
    If you want the same per-user mobility policy to apply to multiple users, select multiple users in the search results, then click Actions, and then click Assign policies.
  7. In Assign Policies, under Mobility policy, do one of the following:

    Note:
    Because there are multiple policies that you can configure in Assign Policies, <Keep as is> is selected by default for every policy in the dialog box. Continue using the policy previously assigned to the user by making no changes to this setting.
    • Select <Automatic> to allow Lync Server 2013 to automatically choose either the global-level policy or, if defined, the site-level policy.

    • Click the name of a per-user mobility policy you previously defined on the Mobility Policy page.

      Tip:
      To help you decide the policy you want to assign, after you click a policy name, click View to view the user rights and permissions defined in the policy.
  8. When you are finished, click OK.

Assigning a Per-User Mobility Policy by Using Windows PowerShell Cmdlets

You can assign per-user mobility policies by using Windows PowerShell and the Grant-CsMobilityPolicy cmdlet. You can run this cmdlet 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 assign a per-user mobility policy to a single user

  • The following command assigns the per-user mobility policy RedmondMobilityPolicy to the user Ken Myer.

    Copy Code
    Grant-CsMobilityPolicy -Identity "Ken Myer" -PolicyName "RedmondMobilityPolicy"
    

To assign a per-user mobility policy to multiple users

  • The following command assigns the per-user mobility policy RedmondMobilityPolicy to all the users who are currently assigned the policy NorthAmericaMobilityPolicy. For details about the Filter parameter used in this command, see Get-CsUser.

    Copy Code
    Get-CsUser -Filter {MobilityPolicy -eq "NorthAmericaMobilityPolicy"} | Grant-CsMobilityPolicy -PolicyName "RedmondMobilityPolicy"
    

To unassign a per-user mobility policy

  • The following command unassigns any per-user mobility policy previously assigned to Ken Myer. After the per-user policy is unassigned, Ken Myer will automatically be managed by using the global policy or, if one exists, his local site policy. A site policy takes precedence over the global policy.

    Copy Code
    Grant-CsMobilityPolicy -Identity "Ken Myer" -PolicyName $Null
    

For details, see Grant-CsMobilityPolicy.

See Also