nerdexam
Microsoft

MS-721 · Question #126

You have a Microsoft Teams Phone deployment. The 613 7010 5XXX phone number range is allocated to the Session Border Controller (SBC). A user named User1 is configured as shown in the following exhibi

The correct answer is C. Set-CsUser [email protected] -OnPremLineURI "tel:+61370105555" D. Set-CsUser [email protected] -EnterpriseVoiceEnabled $false. To resolve inbound call failures and missing outbound caller ID for a Teams Direct Routing user, the OnPremLineURI must be set, and EnterpriseVoiceEnabled must be correctly configured to ensure cloud-only voice routing.

Configure and manage Teams Phone

Question

You have a Microsoft Teams Phone deployment. The 613 7010 5XXX phone number range is allocated to the Session Border Controller (SBC). A user named User1 is configured as shown in the following exhibit. User1 reports that when an external caller attempts to call the phone number of User1, the external caller receives an error message. User1 can make outbound calls, but no caller ID appears. Which two commands should you run to resolve the issues? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point.

Options

How the community answered

(49 responses)
  • A
    6% (3)
  • B
    4% (2)
  • C
    71% (35)
  • E
    18% (9)

Why each option

To resolve inbound call failures and missing outbound caller ID for a Teams Direct Routing user, the OnPremLineURI must be set, and EnterpriseVoiceEnabled must be correctly configured to ensure cloud-only voice routing.

AGrant-CsOnlineVoiceRoutingPolicy -Identity [email protected] -PolicyName $null

Granting `-PolicyName $null` removes any assigned voice routing policy, which would typically prevent outbound calls or further exacerbate routing issues, not resolve them.

BSet-CsOnlineVoiceUser [email protected] -TelephoneNumber $null

Setting `TelephoneNumber` to `$null` would remove the user's assigned phone number, preventing both inbound and outbound calls from working correctly.

CSet-CsUser [email protected] -OnPremLineURI "tel:+61370105555"Correct

Setting the `OnPremLineURI` for the user with `Set-CsUser` is crucial for Direct Routing, as this URI is used by the Session Border Controller (SBC) to correctly route incoming PSTN calls to the Teams user, resolving the inbound call error. The format `tel:+E.164` is standard.

DSet-CsUser [email protected] -EnterpriseVoiceEnabled $falseCorrect

Setting `EnterpriseVoiceEnabled` to `$false` via `Set-CsUser` for a cloud-only Direct Routing user ensures that their voice routing is entirely handled by Teams Online and Direct Routing configuration, preventing potential conflicts with legacy on-premises voice settings that could cause issues like missing outbound caller ID.

ESet-CsOnlineVoiceUser [email protected] -TelephoneNumber "+61370105555"

While `Set-CsOnlineVoiceUser -TelephoneNumber` is used to set the outbound caller ID, the specific issue of 'no caller ID' in this context, combined with inbound call failures, often points to a deeper configuration issue related to `OnPremLineURI` and `EnterpriseVoiceEnabled` for cloud-managed Direct Routing users.

Concept tested: Teams Direct Routing user troubleshooting

Source: https://learn.microsoft.com/en-us/microsoftteams/direct-routing-configure-user#enable-a-user-for-direct-routing

Topics

#Teams Phone configuration#Direct Routing#PowerShell#Voice troubleshooting

Community Discussion

No community discussion yet for this question.

Full MS-721 Practice