📊 VBA (Excel)

Apply Disable Start Menu Suggested Apps (VBA)

Stops Windows from silently installing suggested Store apps. Applied via WScript.Shell.RegWrite from VBA.

By WindowsScripting.com · 465 B
DisableSuggestedAppsRegSet.bas
Attribute VB_Name = "DisableSuggestedAppsRegSet"
Option Explicit

Public Sub DisableSuggestedAppsRegSet()
    Dim wsh As Object
    Dim regPath As String

    Set wsh = CreateObject("WScript.Shell")
    regPath = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager\SilentInstalledAppsEnabled"

    wsh.RegWrite regPath, 0, "REG_DWORD"

    MsgBox "Disable Start Menu Suggested Apps applied." & vbCrLf & regPath, vbInformation
End Sub