Commands › Microsoft Teams

Get-CsOnlineDialinConferencingPolicy

Microsoft Teams MicrosoftTeams Get-*

Retrieves the available Dial-in Conferencing policies in the tenant.

Quick start script

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

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

Syntax — 2 parameter sets

Identity (Default)

Get-CsOnlineDialinConferencingPolicy [[-Identity] <XdsIdentity>] [-LocalStore] [<CommonParameters>]

Filter

Get-CsOnlineDialinConferencingPolicy [-Filter <String>] [-LocalStore] [<CommonParameters>]

Parameters (3)

ParameterTypeRequiredWhat it controls
-Filter String This parameter accepts a wildcard string and returns all policies with identities matching that string. For example, a Filter value of tag:* will return all policies defined at the per-user level.
-Identity XdsIdentity A unique identifier specifying the scope and, in some cases the name, of the policy. If this parameter is omitted, all policies for the organization are returned.
-LocalStore SwitchParameter Reserved for Microsoft Internal use.

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