@echo off
:: ============================================================
:: CheckDisableWindowsWelcomeExperienceStatus.bat
::
:: Checks whether "Disable Windows Welcome Experience" is currently applied.
:: ============================================================

reg query "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\UserProfileEngagement" /v "ScoobeSystemSettingEnabled" 2>nul

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