Commands › Microsoft Teams

Export-CsOnlineAudioFile

Microsoft Teams MicrosoftTeams Export-*

Download an existing audio file.

Quick start script

# Export-CsOnlineAudioFile — 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
Export-CsOnlineAudioFile -Identity <String> | Format-List

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

Syntax

Export-CsOnlineAudioFile -Identity <String> [-ApplicationId <String>] [-HttpPipelinePrepend <SendAsyncStep[]>]
 [<CommonParameters>]

Parameters (3)

ParameterTypeRequiredWhat it controls
-ApplicationId String The ApplicationId parameter is the identifier for the application which will use this audio file. For example, if the audio file is used with an organizational auto attendant, then it needs to be set to...
-HttpPipelinePrepend SendAsyncStep[] {{ Fill HttpPipelinePrepend Description }}
-Identity String yes The Id of the specific audio file that you would like to export.

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