@echo off
:: ============================================================
:: CheckDisableGameBarTipsStatus.bat
::
:: Checks whether "Disable Game Bar Startup Tips" is currently applied.
:: ============================================================

reg query "HKEY_CURRENT_USER\Software\Microsoft\GameBar" /v "ShowStartupPanel" 2>nul

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