You plan to implement a pilot project on Phone System for 100 users.
The pilot project will use a Microsoft Calling Plan.
You need to ensure that the users can establish calls to the PSTN.
Which cmdlets should you run?
Click on the arrows to vote for the correct answer
A. B. C. D.D.
A Microsoft Calling plan requires an additional license.The three cmdlets in this answer assign a phone system license to the user, assigns a phone number to the user and enables the user for Enterprise Voice.
https://docs.microsoft.com/en-us/microsoftteams/calling-plans-for-office-365 https://docs.microsoft.com/en-us/microsoftteams/set-up-calling-plansTo ensure that the users in the pilot project can establish calls to the PSTN using Microsoft Calling Plan, we need to configure a few settings using PowerShell cmdlets. The correct answer is C: Set-AzureADUser, Grant-CsOnlineVoiceRoutingPolicy, and Set-CsOnlineVoiceUser.
Here's a breakdown of each cmdlet and what it does:
Set-AzureADUser -ObjectID <UserObjectID> -OfficePhone <PhoneNumber> -MobilePhone <PhoneNumber> -UsageLocation <LocationCode>
Grant-CsOnlineVoiceRoutingPolicy -Identity <UserPrincipalName> -PolicyName <PolicyName>
Set-CsOnlineVoiceUser -Identity <UserPrincipalName> -TelephoneNumber <PhoneNumber> -VoicePolicyName <PolicyName> -EmergencyLocationId <LocationID>
So to summarize, in order to ensure that the users can establish calls to the PSTN using Microsoft Calling Plan, we need to do the following:
Therefore, the correct answer is C: Set-AzureADUser, Grant-CsOnlineVoiceRoutingPolicy, and Set-CsOnlineVoiceUser.