Force CAPS LOCK

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello -

We are looking for a way to force the CAPS LOCK on when the person using the
PC logs into Windows. I found the article on the web about changing the
registry Keyboard value however I have tried this on my machine and it does
not work. The value does not stay in the registry - it goes back to a 2
which automatically turns on the NUM LOCK. Is there any OTHER way to do
this?

Thank you.
Rachel
 
Copy the following two lines into notepad and save as caplocks.vbs. Then put the script file in the startup folder or use group policy to set it as a login script.

Set WSHShell = WScript.CreateObject("WScript.Shell")
WSHShell.SendKeys "{CAPSLOCK}"

Keith
 
Back
Top