Commands › Microsoft Teams

New-CsTeamsEmergencyCallingExtendedNotification

Microsoft Teams MicrosoftTeams New-*

Quick start script

# New-CsTeamsEmergencyCallingExtendedNotification — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-MicrosoftTeams -CertificateThumbprint $thumb -ApplicationId $appId -TenantId $tenantId

# 2. Capture the current state first — you cannot roll back what you never recorded
$before = Get-CsTeamsEmergencyCallingExtendedNotification
$before | Format-List

# 3. Make the change
New-CsTeamsEmergencyCallingExtendedNotification

# 4. Verify and diff
$after = Get-CsTeamsEmergencyCallingExtendedNotification
Compare-Object ($before | Out-String) ($after | Out-String)

Syntax

New-CsTeamsEmergencyCallingExtendedNotification -EmergencyDialString <string> [-NotificationGroup <string>]
 [-NotificationDialOutNumber <string>] [-NotificationMode <string>] [<CommonParameters>]

Parameters (4)

ParameterTypeRequiredWhat it controls
-EmergencyDialString String Specifies the emergency phone number.
-NotificationDialOutNumber String This parameter represents the PSTN number which can be dialed out if NotificationMode is set to either of the two Conference values. The PSTN phone cannot be unmuted even when the NotificationMode is set to ConferenceUnMuted.
-NotificationGroup String NotificationGroup is an email list of users and groups to be notified of an emergency call. Individual users or groups are separated by ";", for instance, "group1@contoso.com;group2@contoso.com". A maximum of 10...
-NotificationMode NotificationMode The type of conference experience for security desk notification.

Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.