Link to home
Start Free TrialLog in
Avatar of Raydot
Raydot

asked on

Num Lock at startup.

Does anyone know of the code I need to insert into my system files to have the Num Lock default to ON at startup?
ASKER CERTIFIED SOLUTION
Avatar of jacobas
jacobas

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Lee W, MVP
Check BIOS and see if there is a setting for default numlock state (on or off).  Not all BIOS have this setting... most do, but on older systems they may not.

Otherwise you can use the line:

NUMLOCK=ON

placed in the config.sys file.

If that doesn't work try adding the following lines to config.sys

[MENU]

[COMMON]
NUMLOCK=ON

(According the the Win95 Resource kit (you may have a copy of this on the CD in a help file format), the NUMLOCK line must reside in a menu block of config.sys).
Avatar of Raydot
Raydot

ASKER

Right on the money!  Thanks...