If you want a small DOS util that turns off Caps Lock then paste the text below into a text file named capsoff.bat
Run the batch file once. It will generate a file CapsOff.COM in the C:\ directory. Thereafter, running CapsOff.COM under DOS will turn off the Caps Lock key!
Hope this helps.
Padraig
rem ----START OF CAPSOFF.BAT----------
@echo off
> test.deb ECHO A
>>test.deb ECHO xor AX,AX
>>test.deb ECHO mov DS,AX
>>test.deb ECHO mov AX,[417]
>>test.deb ECHO and AX,FFBF
>>test.deb ECHO mov [417],AX
>>test.deb ECHO mov AX,4C00
>>test.deb ECHO int 21
>>test.deb ECHO.
>>test.deb ECHO RCX
>>test.deb ECHO 112
>>test.deb ECHO N C:\CapsOff.COM
>>test.deb ECHO W
>>test.deb ECHO Q
debug < test.deb > NUL
ERASE test.deb
rem --------END OF CAPSOFF.BAT-----