Commands › Exchange Online
Get-CalendarNotification
View calendar text message notification settings for a mailbox. **Note**: This cmdlet is deprecated in Exchange Online PowerShell. The text message notification service is discontinued in Microsoft 365.
Quick start script
# Get-CalendarNotification — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-ExchangeOnline -CertificateThumbprint $thumb -AppId $appId -Organization $org
# 2. Run and inspect
Get-CalendarNotification -Identity <MailboxIdParameter> | Format-List
# 3. Export for evidence / drift tracking
Get-CalendarNotification | Export-Clixml .\CalendarNotification-$(Get-Date -Format yyyyMMdd).xml
Syntax
Get-CalendarNotification [-Identity] <MailboxIdParameter>
[-Credential <PSCredential>]
[-DomainController <Fqdn>]
[-ReadFromDomainController]
[-ResultSize <Unlimited>]
[<CommonParameters>]
Parameters (5)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.