2
1
I have windows 7 and my password is numeric. When I start windows I always try to enter password with numpad and when it fails I see numlock is off. How should I change this behavior in windows?
I want the default keyboard options always to be "on for Numlock" and "off for Capslock and Scrolllock at my windows startup.
But the value is not 0. It's 2147483648 in my registry editor. – Mojtaba Rezaeian – 2015-06-04T12:12:30.367
@Mojtaba - Have you tried changing it? – Ramhound – 2015-06-04T12:13:02.207
1@Mojtaba Change it to 2 and restart your machine. Probably safe to take a backup of your Registry too just in case :) – zain.ali – 2015-06-04T12:13:58.927
4-2147483648 is the lower bound for a 32-bit int. it is interpreted as null for all intents and purposes. Replace it with 2, and your numlock should come on at OS boot. – Frank Thomas – 2015-06-04T12:16:16.023
1The number "2147483648" is the hexadecimal equivalent of 0x80000000 – Moab – 2015-06-04T12:24:13.530
1I've got my answer, seems it's working fine now, thanks all! – Mojtaba Rezaeian – 2015-06-04T12:28:57.600
As a useful comment for this issue I found other values of this key:
1 = capslock
,2 = numlock
,4 = scrolllock
and you can combine any of them by simple add, for example to keep scroll lock and caps-lock on, use value5
which will be sum of4 = scrolllock
and1 = capslock
– Mojtaba Rezaeian – 2015-06-23T08:02:29.120You may need to search the registry for all occurrences of InitialKeyboardIndicators and set them all to 2. – Steve V. – 2016-02-12T00:24:19.623