📜 VBScript (WSH)
Disable Start Menu Suggested Apps (VBScript)
Stops Windows from silently installing suggested Store apps. Applies the tweak via WScript.Shell.RegWrite.
SetDisableSuggestedApps.vbs
' ============================================================
' SetDisableSuggestedApps.vbs
'
' Disable Start Menu Suggested Apps.
' Stops Windows from silently installing suggested Store apps.
'
' Usage: cscript SetDisableSuggestedApps.vbs
' ============================================================
Option Explicit
Dim objShell
Set objShell = CreateObject("WScript.Shell")
On Error Resume Next
objShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager\SilentInstalledAppsEnabled", 0, "REG_DWORD"
If Err.Number = 0 Then
WScript.Echo "Disable Start Menu Suggested Apps applied."
Else
WScript.Echo "Failed to apply tweak (Error " & Err.Number & ": " & Err.Description & ")"
End If
On Error Goto 0