Commands › Microsoft Teams
New-CsTeamsFeedbackPolicy
Use this cmdlet to control whether users in your organization can send feedback about Teams to Microsoft through Give feedback and whether they receive the survey.
Quick start script
# New-CsTeamsFeedbackPolicy — 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-CsTeamsFeedbackPolicy
$before | Format-List
# 3. Make the change (dry run first)
New-CsTeamsFeedbackPolicy -WhatIf
New-CsTeamsFeedbackPolicy
# 4. Verify and diff
$after = Get-CsTeamsFeedbackPolicy
Compare-Object ($before | Out-String) ($after | Out-String)
Syntax
New-CsTeamsFeedbackPolicy [-WhatIf] [-Confirm] [[-Identity] <Object>] [-Tenant <Object>] [-InMemory]
[-AllowEmailCollection <Boolean>] [-AllowLogCollection <Boolean>] [-AllowScreenshotCollection <Boolean>] [-EnableFeatureSuggestions <Boolean>]
[-UserInitiatedMode <String>] [-ReceiveSurveysMode <String>] [-Force] [<CommonParameters>]
Parameters (12)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.