Commands › Microsoft Teams
Grant-CsTeamsFeedbackPolicy
Use this cmdlet to grant a specific Teams Feedback policy to a user (the ability to send feedback about Teams to Microsoft and whether they receive the survey).
Quick start script
# Grant-CsTeamsFeedbackPolicy — 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-CsTeamsFeedbackPolicy -Group <String> | Format-List
# 3. Export for evidence / drift tracking
Grant-CsTeamsFeedbackPolicy | Export-Clixml .\CsTeamsFeedbackPolicy-$(Get-Date -Format yyyyMMdd).xml
Syntax — 3 parameter sets
Identity (Default)
Grant-CsTeamsFeedbackPolicy [[-Identity] <String>] [-PassThru] [[-PolicyName] <String>]
[-WhatIf] [-Confirm] [<CommonParameters>]
GrantToTenant
Grant-CsTeamsFeedbackPolicy [-PassThru] [[-PolicyName] <String>]
[-Global] [-WhatIf] [-Confirm] [<CommonParameters>]
GrantToGroup
Grant-CsTeamsFeedbackPolicy [-PassThru] [[-PolicyName] <String>]
-Group <String> [-Rank <Int32>] [-WhatIf] [-Confirm] [<CommonParameters>]
Parameters (10)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.