đź“„ JScript (WSH)
Disable Windows Welcome Experience (JScript)
Disables the full-screen "suggested content" tips that appear after updates. Applies the tweak via WScript.Shell.RegWrite (JScript syntax).
SetDisableWindowsWelcomeExperience.js
// ============================================================
// SetDisableWindowsWelcomeExperience.js
//
// Disable Windows Welcome Experience.
// Disables the full-screen "suggested content" tips that appear after updates.
//
// Usage: cscript SetDisableWindowsWelcomeExperience.js
// ============================================================
var objShell = WScript.CreateObject("WScript.Shell");
try {
objShell.RegWrite("HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\UserProfileEngagement\\ScoobeSystemSettingEnabled", 0, "REG_DWORD");
WScript.Echo("Disable Windows Welcome Experience applied.");
} catch (e) {
WScript.Echo("Failed to apply tweak: " + e.description);
}