Control the keyboard numlock state at startup
6 March 2004 by Snakefoot | Comment » | Trackback OffIt is possible to configure whether Numlock should be enabled after logging in. The activation is controlled by setting this registry STRING value:
Credits OneComputerGuy.com
Note it is also possible to configure Numlock state at startup before actually performing the login at the Welcome Screen, by setting the value for the default user:[HKEY_CURRENT_USER \ Control Panel \ Keyboard]
InitialKeyboardIndicators = "0"
"0" - All Keys off
"1" - Caps Lock on
"2" - Num Lock on
"4" - Scroll Lock on
For multiple keys, add their values:
"3" - Caps Lock and Num Lock on
"5" - Caps Lock and Scroll Lock on
"6" - Num Lock and Scroll Lock on
"7" - Caps Lock, Num Lock, and Scroll Lock on
"2147483648" - Honor the motherboard BIOS setting (Vista only)
More info MS KB Q101898
Note if numlock is turned off before Windows has reached the login screen, then it might be caused by numlock not being activated in the motherboard BIOS.[HKEY_USERS \.Default \Control Panel \Keyboard]
InitialKeyboardIndicators = "0"
More info MS KB Q154529 (Merged with Q315468)
Credits OneComputerGuy.com
Tags:
Category:
Updated: 14 October 2007
Comment by ludolf - 11 October 2004 @ 2:44 Reply
It’s type is REG_SZ instead of REG_DWORD ;)