|
|
方法1、先开机,等到提示要输入密码的时候,按NUM LOCK,这时灯亮了。此时,别输入密码,只要重新启动就行了。 E9 e: K9 W; }! A7 H. @: P' O
方法2、首先在BIOS中把NumLock项设为Enable,然后在BIOS中将PnPWithOS项亦设为Enable即可。不过注销用户时NumLock小键盘锁是关闭的,要手工打开。
3 |/ A3 g4 N( N P9 G- Q7 T 方法3、进HKEY_CURRENT_USER\Control Panel\Keyboard,将“KeyboardDelay”的值改为2。或者把下面的保存成*.reg,运行。
+ i* l, P/ `1 v, ` 方法4、仅需要对config.sys文件动点小手术即可达到此目的。设置方法如下:
$ O# B% H7 P; {1 D6 P7 z 单击“开始”菜单中的“运行”命令,然后在“打开”框中键入“sysedit”,按下回车键,打开“系统配置编辑程序”窗口。
* ?, t: d6 Y+ O4 Q( ~* v0 a 单击“Config.sys”标题栏,将它切换为当前编辑窗口,u盘装系统然后在编辑区中键入“NumLock=ON”这一行命令。9 b$ r& y9 e. |) {
保存修改并关闭“系统配置编辑程序”窗口。& z, h) s& c0 d/ ~9 w
方法5、把下面的保存成VBS脚本,执行。" g! u" M5 Q+ y( V4 s" H
set WshShell=CreateObject(“WScript.shell”)
' y h1 [: _3 p, |0 ^% {( d+ R4 y- Q1 H WshShell.SendKeys“{NUMLOCK}”" ?: d8 ?& k- P: L' j, Q' M0 ?
Linux
J0 t/ X" y+ W4 U9 Z 1.
. Q4 y% S8 v4 f5 ^6 @$ i5 @ [root@localhost ~]# cat /etc/rc.d/rc.local9 U5 `5 y: s7 w) s) Z2 P$ w
#!/bin/sh& l A; d; B3 g4 b% t8 Q# v$ ]
#( I& q2 P7 b, F
# This script will be executed *after* all the other init scripts.
, O. I9 Y4 e, z$ ?* e7 t3 t # You can put your own initialization stuff in here if you don‘t. |; x3 Y1 e' F, L5 k
# want to do the full Sys V style init stuff.9 g# P# _# g( f6 r- P6 @ |
INITTY=/dev/tty[1-8]
4 s y" f' Z5 L$ ]0 l2 _' y7 P( [+ o for tty in $INITTY; do
* w/ Y$ f3 H4 e! U* Y setleds -D +num 《 $tty+ P: e9 @8 K9 \' N2 K( \5 {, e
done
: t* q; G$ N5 Q$ R# o1 o$ d touch /var/lock/subsys/local4 G: e# ?7 y7 d4 ?
2.在man setleds的描述中,有一段设置字符控制台数字灯的脚本 注意的是:番茄花园设置字符控制台数字灯 在字符模式下,也可以这样: setleds -D +num/+caps/+scroll
+ M+ q! n o( x, Q Windows Registry Editor Version 5.00# u( t3 e5 x" k# c/ P) }4 s; ]
[HKEY_USERS\.DEFAULT\Control Panel\Keyboard]+ l7 x a9 q4 e8 j$ U" d$ I
“InitialKeyboardIndicators”=“2”
% g3 [7 C( T1 p2 c: Q |
|