đź“„ JScript (WSH)
Disable Feedback Notifications (JScript)
Stops Windows from periodically asking for feedback. Applies the tweak via WScript.Shell.RegWrite (JScript syntax).
SetDisableFeedbackNotifications.js
// ============================================================
// SetDisableFeedbackNotifications.js
//
// Disable Feedback Notifications.
// Stops Windows from periodically asking for feedback.
//
// Usage: cscript SetDisableFeedbackNotifications.js
// ============================================================
var objShell = WScript.CreateObject("WScript.Shell");
try {
objShell.RegWrite("HKCU\\Software\\Microsoft\\Siuf\\Rules\\NumberOfSIUFInPeriod", 0, "REG_DWORD");
WScript.Echo("Disable Feedback Notifications applied.");
} catch (e) {
WScript.Echo("Failed to apply tweak: " + e.description);
}