User Tip #42: Control Numlock key

Hits: Failed to execute CGI : Win32 Error Code = 3


The best, and non-registry editing method to set InitialKeyboardIndicators, is to set numlock on, then use Alt-Ctrl-Del to log off. It should remember state for the account. If this doesn't work for you, or you need to script a change on multiple workstation:

To control how numlock functions, edit the following script as desired, cut and paste into numlock.reg and run it. This works for Windows NT and Windows 2000.

REGEDIT4
BLANK LINE GOES HERE
[HKEY_CURRENT_USER\Control Panel\Keyboard]
"InitialKeyboardIndicators"="2"

BLANK LINE GOES HERE

With InitialKeyboardIndicators=2, NumLock is enabled and will retain the settings from the last shutdown. With InitialKeyboardIndicators=0, NumLock is disabled for current user.

Numlock doesn't reflect these setting during the logon phase because at that point, NT is using the .Default user profile since it does not know which user is logging on. Make the same changes to [HKEY_USERS\.DEFAULT\Control Panel\Keyboard] if you want the numlock state to be consistent throughout.

See .REG files for background information on .REG files.

The best, and non-registry editing method to set InitialKeyboardIndicators, is to set numlock on, then use Alt-Ctrl-Del to log off. It should remember state for the account.

Its usually best to avoid registry hacks if possible. You can use the following Windows Script, name it numlock.vbs, to control numlock:

set WshShell = CreateObject("WScript.Shell")
WshShell.SendKeys "{NUMLOCK}"

For an individual user, copy numlock.vbs to the user's startup folder. To get the script to run for all users, put the script in the Startup folder in the All Users profile. Support for the Windows Scripting Host is builtin for Win98, W2K and XP. For Win95 and NT, you have to download and install it.

In a Windows 2000 environment, you can control this functionality with Group Policy.

Related info:

Microsoft Windows Scripting



takes the reader through the basics of scripting all the way up to advanced topics such as Active Directory Service Interfaces (ADSI) and Windows Managment Instrumentation (WMI). packed with practical scripting solutions. Admin Scripting gives practical, usable examples of scripting silent installations of service packs, updates and Internet Explorer. Scripting scandisk and ftp transfer sessions are covered as well as a chapter on scripting applications that covers scriptit, autoit and send-keys. Kixtart, command shell scripting and WSH are all covered - sometimes in a comparitive context showing the same task in each script language. Because this book is not trying to teach you the details of each language and automation area, it can cover vast scope of content in a concise format. Illustrates how to use scripting to perform user and group management, backups and scheduling, and make key security and registry changes