Commands › Microsoft Teams

Grant-CsTeamsMeetingBrandingPolicy

Microsoft Teams MicrosoftTeams Grant-*

Assigns a teams meeting branding policy at the per-user scope. The **CsTeamsMeetingBrandingPolicy** cmdlet enables administrators to control the appearance in meetings by defining custom backgrounds, logos, and colors.

Quick start script

# Grant-CsTeamsMeetingBrandingPolicy — 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
Grant-CsTeamsMeetingBrandingPolicy -Global <SwitchParameter> -Group <String> -Identity <String> | Format-List

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

Syntax — 3 parameter sets

GrantToUser

Grant-CsTeamsMeetingBrandingPolicy -Identity <String> [[-PolicyName] <String>] [<CommonParameters>]

GrantToGroup

Grant-CsTeamsMeetingBrandingPolicy [[-PolicyName] <String>] [-Group] <String> -Rank <Int32>
 [<CommonParameters>]

GrantToTenant

Grant-CsTeamsMeetingBrandingPolicy [[-PolicyName] <String>] [-Global] [-Force] [<CommonParameters>]

Parameters (6)

ParameterTypeRequiredWhat it controls
-Force SwitchParameter Suppresses any confirmation prompts that would otherwise be displayed before making changes.
-Global SwitchParameter yes Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant.
-Group String yes Specifies the group used for the group policy assignment.
-Identity String yes The user you want to grant policy to. This can be specified as an SIP address, UserPrincipalName, or ObjectId.
-PolicyName String The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign it to `$Null`.
-Rank Int32 yes The rank of the policy assignment, relative to other group policy assignments for the same policy type.

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