Commands › Microsoft Teams
Grant-CsTeamsMeetingPolicy
Assigns a teams meeting policy at the per-user scope. The CsTeamsMeetingPolicy cmdlets enable administrators to control the type of meetings that users can create or the features that they can access while in a meeting. It also helps determine how meetings deal with anonymous or external users
Quick start script
# Grant-CsTeamsMeetingPolicy — 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-CsTeamsMeetingPolicy -Group <String> | Format-List
# 3. Export for evidence / drift tracking
Grant-CsTeamsMeetingPolicy | Export-Clixml .\CsTeamsMeetingPolicy-$(Get-Date -Format yyyyMMdd).xml
Syntax — 3 parameter sets
GrantToTenant (Default)
Grant-CsTeamsMeetingPolicy [-Global] [-PassThru] [[-PolicyName] <String>] [<CommonParameters>]
GrantToGroup
Grant-CsTeamsMeetingPolicy [-PassThru] [[-PolicyName] <String>]
[[-Group] <String>] [-Rank <Int32>] [<CommonParameters>]
Identity
Grant-CsTeamsMeetingPolicy [-PassThru] [[-PolicyName] <String>]
[[-Identity] <String>] [<CommonParameters>]
Parameters (8)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.