đź“„ JScript (WSH)
Disable Start Menu Suggested Apps (JScript)
Stops Windows from silently installing suggested Store apps. Applies the tweak via WScript.Shell.RegWrite (JScript syntax).
SetDisableSuggestedApps.js
// ============================================================
// SetDisableSuggestedApps.js
//
// Disable Start Menu Suggested Apps.
// Stops Windows from silently installing suggested Store apps.
//
// Usage: cscript SetDisableSuggestedApps.js
// ============================================================
var objShell = WScript.CreateObject("WScript.Shell");
try {
objShell.RegWrite("HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager\\SilentInstalledAppsEnabled", 0, "REG_DWORD");
WScript.Echo("Disable Start Menu Suggested Apps applied.");
} catch (e) {
WScript.Echo("Failed to apply tweak: " + e.description);
}