Commands › Microsoft Teams

Get-CsTeamsFeedbackPolicy

Microsoft Teams MicrosoftTeams Get-*

Use this cmdlet to retrieve the current Teams Feedback policies (the ability to send feedback about Teams to Microsoft and whether they receive the survey) in the organization.

Quick start script

# Get-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
Get-CsTeamsFeedbackPolicy | Format-List

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

Syntax — 2 parameter sets

Identity (Default)

Get-CsTeamsFeedbackPolicy [[-Identity] <String>] [<CommonParameters>]

Filter

Get-CsTeamsFeedbackPolicy [-Filter <String>] [<CommonParameters>]

Parameters (2)

ParameterTypeRequiredWhat it controls
-Filter String Internal Microsoft use
-Identity String The unique identifier of the policy.

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