đź“„ JScript (WSH)

Disable Start Menu App Suggestions (JScript)

Turns off sponsored app suggestions in the Start menu. Applies the tweak via WScript.Shell.RegWrite (JScript syntax).

By WindowsScripting.com · 657 B
SetDisableStartMenuAds.js
// ============================================================
// SetDisableStartMenuAds.js
//
// Disable Start Menu App Suggestions.
// Turns off sponsored app suggestions in the Start menu.
//
// Usage: cscript SetDisableStartMenuAds.js
// ============================================================

var objShell = WScript.CreateObject("WScript.Shell");

try {
    objShell.RegWrite("HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager\\SubscribedContent-338388Enabled", 0, "REG_DWORD");
    WScript.Echo("Disable Start Menu App Suggestions applied.");
} catch (e) {
    WScript.Echo("Failed to apply tweak: " + e.description);
}