@echo off
:: ============================================================
:: CheckEnableNumlockOnStartupStatus.bat
::
:: Checks whether "Enable Num Lock on Startup" is currently applied.
:: ============================================================

reg query "HKEY_LOCAL_MACHINE\.DEFAULT\Control Panel\Keyboard" /v "InitialKeyboardIndicators" 2>nul

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