🖥️ Batch (CMD)

Disable Feedback Notifications (Batch)

Stops Windows from periodically asking for feedback. Applies the tweak via reg.exe.

By WindowsScripting.com · 543 B
SetDisableFeedbackNotifications.bat
@echo off
:: ============================================================
:: SetDisableFeedbackNotifications.bat
::
:: Disable Feedback Notifications.
:: Stops Windows from periodically asking for feedback.
:: ============================================================

reg add "HKEY_CURRENT_USER\Software\Microsoft\Siuf\Rules" /v "NumberOfSIUFInPeriod" /t REG_DWORD /d "0" /f

if %ERRORLEVEL% EQU 0 (
    echo Disable Feedback Notifications applied.
) else (
    echo Failed to apply tweak. Try running this script as Administrator.
)
pause