Commands › Microsoft Teams

New-CsTeamsMeetingBroadcastPolicy

Microsoft Teams MicrosoftTeams New-*

Use this cmdlet to create a new policy.

Quick start script

# New-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)
New-CsTeamsMeetingBroadcastPolicy  -WhatIf
New-CsTeamsMeetingBroadcastPolicy

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

Syntax

New-CsTeamsMeetingBroadcastPolicy [-Tenant <Guid>] [-Description <String>]
 [-AllowBroadcastScheduling <Boolean>] [-AllowBroadcastTranscription <Boolean>]
 [-BroadcastAttendeeVisibilityMode <String>] [-BroadcastRecordingMode <String>] [-Identity] <XdsIdentity>
 [-InMemory] [-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. Note: this setting is applicable to broadcast events that use Teams Meeting production only and does not apply when...
-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, never recorded or user can choose whether to record or not. Note: this setting is applicable to broadcast events that use Teams Meeting...
-Confirm SwitchParameter Prompts you for confirmation before running the cmdlet.
-Description String Specifies why this policy is being created.
-Force SwitchParameter Suppresses the display of any non-fatal error message that might occur when running the command.
-Identity XdsIdentity Specifies the name of the policy being created
-InMemory SwitchParameter Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of...
-Tenant Guid Not applicable, you can only specify policies for your own logged-in tenant.
-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.