nerdexam
MicrosoftMicrosoft

MS-720 · Question #108

MS-720 Question #108: Real Exam Question with Answer & Explanation

To configure emergency call notifications for a new Microsoft Teams Phone office, you must first create a new emergency calling policy and then assign it to the relevant network site.

Plan and configure Microsoft Teams Phone

Question

Drag and Drop Question You have a Microsoft Teams Phone deployment in an office. When a user dials an emergency number, the safety team for the office is notified. Your company opens a new office that has a Teams Phone deployment. You need to ensure that the safety team for the new office is notified when an emergency call is placed from that office. How should you complete the PowerShell script? To answer, drag the appropriate values to the correct targets. Each value may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content. NOTE: Each correct selection is worth one point. Answer:

Explanation

To configure emergency call notifications for a new Microsoft Teams Phone office, you must first create a new emergency calling policy and then assign it to the relevant network site.

Approach. The scenario requires setting up emergency call notifications for a new office. This involves two primary steps in Microsoft Teams Phone configurations using PowerShell:

  1. Create a new emergency calling policy: The first blank command includes parameters like -Identity Site1-ECP, -NotificationGroup "[email protected]", and -NotificationMode NotificationOnly. These parameters are specific to defining an emergency calling policy that includes notification details. The cmdlet New-CsTeamsEmergencyCallingPolicy is designed precisely for this purpose-to create a new emergency calling policy. Thus, New-CsTeamsEmergencyCallingPolicy is dragged to the first blank.

  2. Assign the policy to the relevant scope (the new office/site): The second blank command includes -Identity "Site1" and -EmergencyCallingPolicy "Site1-ECP". This indicates the action of applying the previously created policy (Site1-ECP) to a specific entity, likely a tenant network site representing the 'Site1' office. The Grant-CsTeamsEmergencyCallingPolicy cmdlet is used to assign an emergency calling policy to either a user or a tenant network site. While the typical parameter for a site is -TenantSite, in the context of a drag-and-drop question with given options, Grant-CsTeamsEmergencyCallingPolicy is the only appropriate cmdlet for assigning a policy. Thus, Grant-CsTeamsEmergencyCallingPolicy is dragged to the second blank.

Common mistakes.

  • common_mistake. 1. Using New-CsOnlineVoiceRoutingPolicy or New-CsTeamsEmergencyRoutingPolicy: These cmdlets are used for creating voice routing policies or emergency routing policies, which define how emergency calls are routed to the Public Switched Telephone Network (PSTN) gateway, not for defining the emergency calling policy itself or its notification settings. The question specifically concerns 'emergency number' and 'safety team notified', pointing to an emergency calling policy, not routing.
  1. Using Set-CsTenantNetworkSite: This cmdlet is used to modify an existing tenant network site's properties (like address, location data) but not to assign a policy to it. Policies are 'granted' or 'assigned' using Grant-Cs cmdlets.
  2. Confusing New-CsTeamsEmergencyCallingPolicy with Grant-CsTeamsEmergencyCallingPolicy: One creates the policy, the other assigns it. Using Grant-CsTeamsEmergencyCallingPolicy to create the policy or New-CsTeamsEmergencyCallingPolicy to assign it would be incorrect due to the distinct functions of 'New' (create) and 'Grant' (assign) cmdlets.

Concept tested. Microsoft Teams Phone System emergency calling policies, specifically the creation of a new emergency calling policy with notification settings and its assignment to a tenant network site or scope using PowerShell.

Topics

#Microsoft Teams Phone#Emergency Services#Emergency Call Routing#PowerShell Configuration

Community Discussion

No community discussion yet for this question.

Full MS-720 PracticeBrowse All MS-720 Questions