@echo off
:: ============================================================
:: CheckDisableStickyKeysPromptStatus.bat
::
:: Checks whether "Disable Sticky Keys Shortcut Prompt" is currently applied.
:: ============================================================

reg query "HKEY_CURRENT_USER\Control Panel\Accessibility\StickyKeys" /v "Flags" 2>nul

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