Commands › Microsoft Teams

Get-CsTeamsMeetingBroadcastPolicy

Microsoft Teams MicrosoftTeams Get-*

User-level policy for tenant admin to configure meeting broadcast behavior for the broadcast event organizer.

Quick start script

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

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

Syntax — 2 parameter sets

Identity (Default)

Get-CsTeamsMeetingBroadcastPolicy [-Tenant <Guid>] [[-Identity] <XdsIdentity>] [-LocalStore]
 [<CommonParameters>]

Filter

Get-CsTeamsMeetingBroadcastPolicy [-Tenant <Guid>] [-Filter <String>] [-LocalStore] [<CommonParameters>]

Parameters (4)

ParameterTypeRequiredWhat it controls
-Filter String Enables you to use wildcard characters when specifying the policy (or policies) to be returned.
-Identity XdsIdentity Unique identifier for the policy to be retrieved. Policies can be configured at the global scope or at the per-user scope. To retrieve the global policy, use this syntax: -Identity global. To retrieve a per-user...
-LocalStore SwitchParameter Not applicable to the online service.
-Tenant Guid Not applicable to online service.

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