⚡ PowerShell 5.1+

Disable Feedback Notifications

Stops Windows from periodically asking for feedback.

By WindowsScripting.com · 671 B
Set-DisableFeedbackNotifications.ps1
<#
.SYNOPSIS
    Disable Feedback Notifications.

.DESCRIPTION
    Stops Windows from periodically asking for feedback.

    Sets HKCU:\Software\Microsoft\Siuf\Rules \ NumberOfSIUFInPeriod to 0.

.EXAMPLE
    .\Set-DisableFeedbackNotifications.ps1
#>

[CmdletBinding()]
param()

$regPath = 'HKCU:\Software\Microsoft\Siuf\Rules'

if (-not (Test-Path $regPath)) {
    New-Item -Path $regPath -Force | Out-Null
}

New-ItemProperty -Path $regPath -Name 'NumberOfSIUFInPeriod' -Value 0 -PropertyType DWord -Force | Out-Null

Write-Host "Disable Feedback Notifications applied. Sign out and back in (or restart explorer.exe) for it to fully take effect." -ForegroundColor Green