News, Product Information, and Tips
Check out our free utlities in the downloads section

Numlock and Capslock – The enemy of Citrix and terminal services

by Steve Wiseman on May 2, 2006 · 1 comment

in Windows

Citrix, and Microsoft Terminal services have had an annoyance for quite some time now. Numlock and Capslock just don’t default to what you want.

It seems that if the user is not an administrator – both are cleared at login. No matter what registry hacks you try, the user is still stuck with these settings.

Finally I found a simple solution the the problem. It is an easy VB script that you call when the user logs in:

To turn Numlock on:
set WshShell = CreateObject(“WScript.Shell”)
WshShell.SendKeys “{NUMLOCK}”

To turn capslock on:
set WshShell = CreateObject(“WScript.Shell”)
WshShell.SendKeys “{CAPSLOCK}”

Uh. Yea…I didn’t think you would even care about scroll-lock, so we wont spend another minute thinking about that waste of keyboard space.

Like this article? Then sign up for my newsletter to get free tips and software sent right to your inbox once a week. Like you, I hate spam – I will never spam, or sell your email address.

Related Articles:

{ 1 comment… read it below or add one }

1 Joseph R. O'Toole January 14, 2010 at 4:59 am

Have you seen where users in Citrix have the Cap Locks turn on during a session and will not turn off? Is there a little auto script to reset Cap lock on and off capabilities?

Leave a Comment

t