📜 VBScript (WSH)

Disable Feedback Notifications (VBScript)

Stops Windows from periodically asking for feedback. Applies the tweak via WScript.Shell.RegWrite.

By WindowsScripting.com · 703 B
SetDisableFeedbackNotifications.vbs
' ============================================================
' SetDisableFeedbackNotifications.vbs
'
' Disable Feedback Notifications.
' Stops Windows from periodically asking for feedback.
'
' Usage: cscript SetDisableFeedbackNotifications.vbs
' ============================================================

Option Explicit

Dim objShell
Set objShell = CreateObject("WScript.Shell")

On Error Resume Next
objShell.RegWrite "HKCU\Software\Microsoft\Siuf\Rules\NumberOfSIUFInPeriod", 0, "REG_DWORD"

If Err.Number = 0 Then
    WScript.Echo "Disable Feedback Notifications applied."
Else
    WScript.Echo "Failed to apply tweak (Error " & Err.Number & ": " & Err.Description & ")"
End If
On Error Goto 0