Commands › Microsoft Teams

Set-CsTeamsMeetingBroadcastPolicy

Microsoft Teams MicrosoftTeams Set-*

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

Quick start script

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

# 2. Capture the current state first — you cannot roll back what you never recorded
$before = Get-CsTeamsMeetingBroadcastPolicy
$before | Format-List

# 3. Make the change (dry run first)
Set-CsTeamsMeetingBroadcastPolicy  -WhatIf
Set-CsTeamsMeetingBroadcastPolicy

# 4. Verify and diff
$after = Get-CsTeamsMeetingBroadcastPolicy
Compare-Object ($before | Out-String) ($after | Out-String)

Syntax — 2 parameter sets

Identity (Default)

Set-CsTeamsMeetingBroadcastPolicy [-Tenant <Guid>] [-Description <String>]
 [-AllowBroadcastScheduling <Boolean>] [-AllowBroadcastTranscription <Boolean>]
 [-BroadcastAttendeeVisibilityMode <String>] [-BroadcastRecordingMode <String>] [[-Identity] <XdsIdentity>]
 [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]

Instance

Set-CsTeamsMeetingBroadcastPolicy [-Tenant <Guid>] [-Description <String>]
 [-AllowBroadcastScheduling <Boolean>] [-AllowBroadcastTranscription <Boolean>]
 [-BroadcastAttendeeVisibilityMode <String>] [-BroadcastRecordingMode <String>] [-Instance <PSObject>] [-Force]
 [-WhatIf] [-Confirm] [<CommonParameters>]

Parameters (11)

ParameterTypeRequiredWhat it controls
-AllowBroadcastScheduling Boolean Specifies whether this user can create broadcast events in Teams. This setting impacts broadcasts that use both self-service and external encoder production methods.
-AllowBroadcastTranscription Boolean Specifies whether real-time transcription and translation can be enabled in the broadcast event.
-BroadcastAttendeeVisibilityMode String Specifies the attendee visibility mode of the broadcast events created by this user. This setting controls who can watch the broadcast event - e.g. anyone can watch this event including anonymous users or only...
-BroadcastRecordingMode String Specifies whether broadcast events created by this user are always recorded (AlwaysEnabled), never recorded (AlwaysDisabled) or user can choose whether to record or not (UserOverride).
-Confirm SwitchParameter Prompts you for confirmation before running the cmdlet.
-Description String Enables administrators to provide additional text about the conferencing policy. For example, the Description might indicate the users the policy should be assigned to.
-Force SwitchParameter Suppresses the display of any non-fatal error message that might occur when running the command.
-Identity XdsIdentity Unique identifier for the policy to be modified. Policies can be configured at the global or per-user scopes. To modify the global policy, use this syntax: -Identity global. To modify a per-user policy, use syntax...
-Instance PSObject Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values.
-Tenant Guid Not applicable to online service.
-WhatIf SwitchParameter Shows what would happen if the cmdlet runs. The cmdlet is not run.

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