我想永久打开我的数字锁定。我从未关闭过它。但偶尔它会被关闭。在 Windows 7 和 Ubuntu 10.10 中有什么方法可以做到这一点吗?
答案1
答案2
我编写了一个可用的解决方案。使用一个.reg
文件,我在启动时打开了 numlock 键,并在键盘映射中禁用了 numlock 键。
该文件如下所示:
Windows Registry Editor Version 5.00
[HKEY_USERS\.DEFAULT\Control Panel\Keyboard]
"InitialKeyboardIndicators"="2147483650"
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout]
"Scancode Map"=hex:00,00,00,00,00,00,00,00,02,00,00,00,00,00,45,00,00,00,00,00
有关背景的更多信息在我的博客上。