📊 VBA (Excel)

Apply Disable Feedback Notifications (VBA)

Stops Windows from periodically asking for feedback. Applied via WScript.Shell.RegWrite from VBA.

By WindowsScripting.com · 437 B
DisableFeedbackNotificationsRegSet.bas
Attribute VB_Name = "DisableFeedbackNotificationsRegSet"
Option Explicit

Public Sub DisableFeedbackNotificationsRegSet()
    Dim wsh As Object
    Dim regPath As String

    Set wsh = CreateObject("WScript.Shell")
    regPath = "HKEY_CURRENT_USER\Software\Microsoft\Siuf\Rules\NumberOfSIUFInPeriod"

    wsh.RegWrite regPath, 0, "REG_DWORD"

    MsgBox "Disable Feedback Notifications applied." & vbCrLf & regPath, vbInformation
End Sub