@echo off
:: ============================================================
:: SetDisableStartMenuAds.bat
::
:: Disable Start Menu App Suggestions.
:: Turns off sponsored app suggestions in the Start menu.
:: ============================================================

reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338388Enabled" /t REG_DWORD /d "0" /f

if %ERRORLEVEL% EQU 0 (
    echo Disable Start Menu App Suggestions applied.
) else (
    echo Failed to apply tweak. Try running this script as Administrator.
)
pause