đź“„ JScript (WSH)
Disable Windows Tips & Suggestions (JScript)
Stops Windows from showing tips and suggestions notifications. Applies the tweak via WScript.Shell.RegWrite (JScript syntax).
SetDisableWindowsTips.js
// ============================================================
// SetDisableWindowsTips.js
//
// Disable Windows Tips & Suggestions.
// Stops Windows from showing tips and suggestions notifications.
//
// Usage: cscript SetDisableWindowsTips.js
// ============================================================
var objShell = WScript.CreateObject("WScript.Shell");
try {
objShell.RegWrite("HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager\\SoftLandingEnabled", 0, "REG_DWORD");
WScript.Echo("Disable Windows Tips & Suggestions applied.");
} catch (e) {
WScript.Echo("Failed to apply tweak: " + e.description);
}