⚡ PowerShell 5.1+

Disable Start Menu App Suggestions

Turns off sponsored app suggestions in the Start menu.

By WindowsScripting.com · 764 B
Set-DisableStartMenuAds.ps1
<#
.SYNOPSIS
    Disable Start Menu App Suggestions.

.DESCRIPTION
    Turns off sponsored app suggestions in the Start menu.

    Sets HKCU:\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager \ SubscribedContent-338388Enabled to 0.

.EXAMPLE
    .\Set-DisableStartMenuAds.ps1
#>

[CmdletBinding()]
param()

$regPath = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager'

if (-not (Test-Path $regPath)) {
    New-Item -Path $regPath -Force | Out-Null
}

New-ItemProperty -Path $regPath -Name 'SubscribedContent-338388Enabled' -Value 0 -PropertyType DWord -Force | Out-Null

Write-Host "Disable Start Menu App Suggestions applied. Sign out and back in (or restart explorer.exe) for it to fully take effect." -ForegroundColor Green