Commands › Microsoft Teams

Get-CsOnlineAudioFile

Microsoft Teams MicrosoftTeams Get-*

Returns information about a specific or all uploaded audio files of a given application type.

Quick start script

# Get-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
Get-CsOnlineAudioFile | Format-List

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

Syntax

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

Parameters (3)

ParameterTypeRequiredWhat it controls
-ApplicationId String The ApplicationId parameter specifies the identifier for the application that was specified when audio file was uploaded. For example, if the audio file is used with an auto attendant, then it should be specified as...
-HttpPipelinePrepend SendAsyncStep[] {{ Fill HttpPipelinePrepend Description }}
-Identity String The Id of the specific audio file that you would like to see information about. If you are only specifying -Identity, the -ApplicationId is assumed to be TenantGlobal.

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