Commands › Microsoft Teams

New-CsTeamsFeedbackPolicy

Microsoft Teams MicrosoftTeams New-*

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)

ParameterTypeRequiredWhat it controls
-AllowEmailCollection Boolean Set this to TRUE to enable Email collection.
-AllowLogCollection Boolean Set this to TRUE to enable log collection.
-AllowScreenshotCollection Boolean Set this to TRUE to enable Screenshot collection.
-Confirm SwitchParameter Prompts you for confirmation before running the cmdlet.
-EnableFeatureSuggestions Boolean This setting will enable Tenant Admins to hide or show the Teams menu item “Help | Suggest a Feature”.
-Force SwitchParameter Suppress all non-fatal errors.
-Identity Object A unique identifier.
-InMemory SwitchParameter The InMemory parameter creates an object reference without actually committing the object as a permanent change.
-ReceiveSurveysMode String Set the receiveSurveysMode parameter to enabled to allow users who are assigned the policy to receive the survey.
-Tenant Object Internal Microsoft use only.
-UserInitiatedMode String Set the userInitiatedMode parameter to enabled to allow users who are assigned the policy to give feedback. Setting the parameter to disabled turns off the feature and users who are assigned the policy don't have the...
-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.