Hi @Amghost @Anonymous @KrishnaV
Here is a way to disable the Feedback Survey using PowerShell.
1. Follow steps 1-4 from this link: PowerShell support - Power Platform | Microsoft Docs
2. Type:
Get-TenantSettings
Output
------------------------------------------------------
walkMeOptOut : True
disableNPSCommentsReachout : False
disableNewsletterSendout : False
disableEnvironmentCreationByNonAdminUsers : False
disablePortalsCreationByNonAdminUsers : False
disableSurveyFeedback : False
disableTrialEnvironmentCreationByNonAdminUsers : False
disableCapacityAllocationByEnvironmentAdmins : False
disableSupportTicketsVisibleByAllUsers : False
1. Type:
$settings = @{ disableSurveyFeedback = $false}Set-TenantSettings $settings
Hope this helps.
Sincerely.
Community Support Team - Anthony Amador
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.