🖥️ Batch (CMD)

Check "Disable Sticky Keys Shortcut Prompt" Status (Batch)

Uses reg query to check the current value behind the "Disable Sticky Keys Shortcut Prompt" tweak.

By WindowsScripting.com · 448 B
CheckDisableStickyKeysPromptStatus.bat
@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