Skip to content

Commit 6cb9e8e

Browse files
Update New-CsTeamsEmergencyCallRoutingPolicy.md
fixing an issue from a customer incident
1 parent 06b1a2f commit 6cb9e8e

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

teams/teams-ps/teams/New-CsTeamsEmergencyCallRoutingPolicy.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,15 @@ New-CsTeamsEmergencyCallRoutingPolicy -Identity "Test" -EmergencyNumbers @{add=$
3434
```
3535

3636
This example first creates a new Teams emergency number object and then creates a Teams Emergency Call Routing policy with this emergency number object.
37-
Note that the OnlinePSTNUsage specified in the first command must previously exist. Note that the resulting object from the New-CsTeamsEmergencyNumber only exists in memory, so you must apply it to a policy to be used.
37+
Note that the OnlinePSTNUsage specified in the first command must previously exist. Note that the resulting object from the New-CsTeamsEmergencyNumber only exists in memory, so you must apply it to a policy to be used.
38+
Note that {@add=....} will try to append a new emergency number to the values taken from the global instance.
39+
40+
### Example 2
41+
```powershell
42+
$en1 = New-CsTeamsEmergencyNumber -EmergencyDialString "911" -EmergencyDialMask "933" -OnlinePSTNUsage "USE911"
43+
New-CsTeamsEmergencyCallRoutingPolicy -Identity "testecrp" -EmergencyNumbers $en1 -AllowEnhancedEmergencyServices:$true -Description "test"
44+
```
45+
This example overrides the global emergency numbers from the global instance.
3846

3947
## PARAMETERS
4048

0 commit comments

Comments
 (0)