@echo off
:: ============================================================
:: CheckDisableSuggestedAppsStatus.bat
::
:: Checks whether "Disable Start Menu Suggested Apps" is currently applied.
:: ============================================================

reg query "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SilentInstalledAppsEnabled" 2>nul

if %ERRORLEVEL% NEQ 0 (
    echo.
    echo 'SilentInstalledAppsEnabled' is not set (using the Windows default^).
)
pause