@echo off
:: ============================================================
:: CheckDisableConsumerFeaturesStatus.bat
::
:: Checks whether "Disable Windows Consumer Features" is currently applied.
:: ============================================================

reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" 2>nul

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