🖥️ Batch (CMD)
Check "Disable Windows Welcome Experience" Status (Batch)
Uses reg query to check the current value behind the "Disable Windows Welcome Experience" tweak.
CheckDisableWindowsWelcomeExperienceStatus.bat
@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