...
For a user to be able to make/receive phone calls with MS Teams, they must have an E5 account or Phone System License add-on. Skip to step 5 if they already have these
1.) Label the existing powershell (after step 5) as Depricated.
2.) Add a new box under it, with the following powershell command:
$USER = "user@domain.tld" $DID = "+1234567890" $VoicePolicy = "VP_SANSAY1" Set-CsPhoneNumberAssignment -Identity $USER -EnterpriseVoiceEnabled $true -PhoneNumber $DID Grant-CsTeamsSharedCallingRoutingPolicy -Identity $USER -PolicyName $VoicePolicy
3.) .
Log into the Azure Active Directory admin console (http://aad.portal.azure.com)
Select the “Users” option in the left menu
Click on the user you are configuring, then click on “Licenses” under the “Manage” section of the submenu
...
Click +Assignments and search for Microsoft 365 Phone System and add it to the customer (This will be included for E5 accounts and does cost additional for E3 accounts)
...
In PowerShell, run the following script to add voice service and a DID to the customer:
$USER = "user@domain.tld" |
...
#Deprecated $USER = "user@domain.tld" |
---|
...
title | Old/Deprecated Method (click to expand) |
---|
...
Log into the Azure Active Directory admin console (http://aad.portal.azure.com )
...
Select the “Users” option in the left menu
...
Click on the user you are configuring, then click on “Licenses” under the “Manage” section of the submenu
...
Click +Assignments and search for Microsoft 365 Phone System and add it to the customer (This will be included for E5 accounts and does cost additional for E3 accounts)
It can take some time after adding voice policies, but the user should be able to browse to “Calls” in Microsoft Teams and have a Dial pad along with a message saying “Your Number: +1 (234) 567-8901”
...