🖥️ Batch (CMD)

Check "Disable Start Menu App Suggestions" Status (Batch)

Uses reg query to check the current value behind the "Disable Start Menu App Suggestions" tweak.

By WindowsScripting.com · 521 B
CheckDisableStartMenuAdsStatus.bat
@echo off
:: ============================================================
:: CheckDisableStartMenuAdsStatus.bat
::
:: Checks whether "Disable Start Menu App Suggestions" is currently applied.
:: ============================================================

reg query "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338388Enabled" 2>nul

if %ERRORLEVEL% NEQ 0 (
    echo.
    echo 'SubscribedContent-338388Enabled' is not set (using the Windows default^).
)
pause