Commands › Microsoft Teams

Get-CsAutoAttendantStatus

Microsoft Teams MicrosoftTeams Get-*

Use Get-CsAutoAttendantStatus cmdlet to get the status of an Auto Attendant (AA) provisioning.

Quick start script

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

# 2. Run and inspect
Get-CsAutoAttendantStatus -Identity <String> | Format-List

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

Syntax

Get-CsAutoAttendantStatus -Identity <String> [-IncludeResources <List>] [-Tenant <Guid>] [<CommonParameters>]

Parameters (3)

ParameterTypeRequiredWhat it controls
-Identity String yes Represents the identifier for the auto attendant whose provisioning status is to be retrieved.
-IncludeResources List The IncludeResources parameter identifies the auto attendant resources whose status is to be retrieved. Available resources are: - AudioFile: Indicates status for audio files used by AA. - DialByNameVoiceResponses:...
-Tenant Guid This parameter is reserved for Microsoft internal use only.

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