Commands › Exchange Online

Get-CalendarProcessing

Exchange Online ExchangeOnlineManagement Get-*

View the calendar processing options for resource mailboxes, which include the Calendar Attendant, resource booking assistant and calendar configuration. The settings returned by this cmdlet are editable only on resource mailboxes.

Quick start script

# Get-CalendarProcessing — 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-CalendarProcessing -Identity <MailboxIdParameter> | Format-List

# 3. Export for evidence / drift tracking
Get-CalendarProcessing | Export-Clixml .\CalendarProcessing-$(Get-Date -Format yyyyMMdd).xml

Syntax

Get-CalendarProcessing [-Identity] <MailboxIdParameter>
 [-DomainController <Fqdn>]
 [-ReadFromDomainController]
 [-ResultSize <Unlimited>]
 [<CommonParameters>]

Parameters (4)

ParameterTypeRequiredWhat it controls
-Identity MailboxIdParameter yes The Identity parameter specifies the resource mailbox that you want to view. You can use any value that uniquely identifies the mailbox. For example:
-DomainController Fqdn This parameter is available only in on-premises Exchange.
-ReadFromDomainController SwitchParameter This parameter is available only in on-premises Exchange.
-ResultSize Unlimited The ResultSize parameter specifies the maximum number of results to return. If you want to return all requests that match the query, use unlimited for the value of this parameter. The default value is 1000.

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