Multi-line support for Teams Phone users

Microsoft Teams Phone is adding support for multi-line users, allowing Phone administrators to assign up to 10 telephone numbers to a single Teams Phone user within one Teams account. Users can make and receive calls from any of these numbers across Teams desktop, Teams Mobile, and Teams devices, without switching accounts or hardware. Teams Mobile and Teams devices currently have limited capabilities to receive multi-line calls.

  • Users need a Teams Phone or Teams Phone with Calling Plan license.
  • Users must have a primary line assigned from their usage location before an alternate line can be assigned.
  • A user can have a maximum of 11 numbers assigned: 1 primary, 1 private, and 9 alternate.
  • This update is available for Teams on Windows, Mac, and the web.
  • Users can receive calls to a multi-line number on Teams Mobile and Teams desk phones, but cannot yet select it for outbound calls. An update should follow.
  • Multi-line support is off by default and must be configured by an administrator before users can access it.


Timeline

The rollout should be completed in May 2026.

How does this affect your Teams administrators?

Teams Phone administrators can now assign up to 10 telephone numbers to a single Teams Phone user (1 private and 9 alternate numbers). The assigned numbers appear as separate lines in the Calls app in Microsoft Teams.

Multi-line support in Teams Phone is useful in a few situations.

  • Executives, assistants, and support teams can manage multiple business lines from a single Teams account, eliminating the need to juggle separate logins.
  • Users who regularly call contacts in other regions can present a local number rather than an unfamiliar foreign one.
  • And anyone covering more than one role can keep those functions on separate numbers without needing a second account.

The alternate phone numbers can be assigned via the Teams admin center…

Assign an alternate number via the Teams admin center
Assign an alternate number via the Teams admin center

Or as an alternate number via Teams PowerShell and Set-CsPhoneNumberAssignment.

PowerShell
Connect-MicrosoftTeams

$UPN = "<UserPrincipalName>"
$AlternatePhoneNumber = "<AlternateNumber>"

# Get the list of emergency locations in the tenant, to retrieve the LocationId for the phone number assignment
Get-CsOnlineLisLocation | select LocationId,CompanyName,StreetName,PostalCode,City,ValidationStatus

# Assign an alternate phone number to a user
Set-CsPhoneNumberAssignment `
    -Identity $UPN `
    -PhoneNumber $AlternatePhoneNumber `
    -PhoneNumberType CallingPlan `
    -LocationId "<LisLocationId>" `
    -AssignmentCategory Alternate


Once a number is assigned, Teams can indicate that policy assignments are missing.

Phone policy assignments are missing
Phone policy assignments are missing

Five custom Phone policies should be assigned to an alternate number:

  • TenantDialPlan
  • OnlineVoiceRoutingPolicy
  • CallingLineIdentity
  • TeamsEmergencyCallingPolicy
  • TeamsEmergencyCallRoutingPolicy

Custom policies can be assigned using the cmdlet Set-CsPhoneNumberPolicyAssignment. The policies are assigned to the alternate phone number, rather than to a user account.

PowerShell
Set-CsPhoneNumberPolicyAssignment -TelephoneNumber $AlternatePhoneNumber -PolicyType TenantDialPlan -PolicyName "<PolicyName>" 
Set-CsPhoneNumberPolicyAssignment -TelephoneNumber $AlternatePhoneNumber -PolicyType OnlineVoiceRoutingPolicy -PolicyName "<PolicyName>" 
Set-CsPhoneNumberPolicyAssignment -TelephoneNumber $AlternatePhoneNumber -PolicyType CallingLineIdentity -PolicyName "<PolicyName>"  
Set-CsPhoneNumberPolicyAssignment -TelephoneNumber $AlternatePhoneNumber -PolicyType TeamsEmergencyCallingPolicy -PolicyName "<PolicyName>" 
Set-CsPhoneNumberPolicyAssignment -TelephoneNumber $AlternatePhoneNumber -PolicyType TeamsEmergencyCallRoutingPolicy -PolicyName "<PolicyName>" 


Confirming the policy configuration in the Teams admin center.

Policy configuration for my alternate number
Policy configuration for my alternate number

Teams administrators should also read the known limitations.


How does this affect your Teams users?

Once a number is assigned, it is automatically displayed to the user. Users assigned more than one business telephone number can then make and receive calls from any of those numbers within their existing Teams account.

The additional number appears at the top of the Calls app.

Selecting the alternate phone number for an outgoing call
Selecting the alternate phone number for an outgoing call

Alternatively, the phone number can be selected before the call starts.

Selecting the line to call out on
Selecting the line to call out on

As a reminder, users cannot yet select the alternate number on Teams Mobile or Desk devices.

Share
Avatar photo

Tobias Asböck

Tobias is a Senior System Engineer with more than 10 years of professional experience with Microsoft 365 products such as SharePoint Online, SharePoint Premium, OneDrive for Business, Teams Collaboration, Entra ID, Information Protection, Universal Print, and Microsoft 365 Licensing. He also has 15+ years of experience planning, administering, and operating SharePoint Server environments. Tobias is a PowerShell Scripter with certifications for Microsoft 365 products. In his spare time, Tobias is busy with updates in the Microsoft 365 world or on the road with his road bike and other sports activities. If you have additional questions, please contact me via LinkedIn or [email protected].

Leave a Reply

Your email address will not be published. Required fields are marked *