🖥️ 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.
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