Topic Last Modified: 2013-02-22

To complete user account configuration for either users of Enterprise Voice or users of dial-in conferencing, the user must be assigned a dial plan. User accounts will automatically use the global dial plan or, if one exists, the site-level dial plan when you do not explicitly assign an existing per-user dial plan. If you want to use the global or site dial plan for all users that are enabled for Enterprise Voice, you can skip this section.

To assign a dial plan by using the Lync Server 2013 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. 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 that you want to enable, and then click Find.

  5. In the table, click the user account that you want to assign a dial plan.

  6. On the Edit menu, click Show details.

  7. On the Edit Lync Server User page, under Telephony, click Enterprise Voice.

  8. Click Dial plan policy, and then choose the desired dial plan.

  9. Click Commit.

For details about configuring dial plans, see the Configuring Dial Plans topic.

Assign a Per-User Dial Plan by Using Windows PowerShell Cmdlets

You can assign per-user dial plans with Windows PowerShell and the Grant-CsdialPlan cmdlet. You can run this cmdlet 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 assign a per-user dial plan to a single user

  • The following command assigns the per-user dial plan RedmondDialPlan to the user Ken Myer.

    Copy Code
    Grant-CsDialPlan -Identity "Ken Myer" -PolicyName "RedmondDialPlan"
    

To assign a per-user dial plan to multiple users

  • This command assigns the per-user dial plan RedmondDialPlan to all the users who work in the city of Redmond. For more information on the LdapFilter parameter used in this command, see the documentation for the Get-CsUser cmdlet.

    Copy Code
    Get-CsUser -LdapFilter "l=Redmond" | Grant-CsDialPlan -PolicyName "RedmondDialPlan"
    

To unassign a per-user dial plan

  • The following command unassigns any per-user dial plan previously assigned to Ken Myer. After the per-user dial plan is unassigned, Ken Myer will automatically be managed by using the global dial plan, his local site dial plan (if one exists), or the service-scope dial plan assigned to his Registrar or PSTN gateway. A service scope dial plan takes precedence over any site dial plan, and a site dial plan takes precedence over the global dial plan.

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

For more information, see the help topic for the Grant-CsDialPlan cmdlet.

See Also