🖥️ Batch (CMD)

Check "Disable Start Menu Suggested Apps" Status (Batch)

Uses reg query to check the current value behind the "Disable Start Menu Suggested Apps" tweak.

By WindowsScripting.com · 511 B
CheckDisableSuggestedAppsStatus.bat
@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