

InterviewSolution
Saved Bookmarks
1. |
Solve : turn caps lock off with batch codes without using external program? |
Answer» turn CAPS LOCK off with batch codes without using external program my question= is there a way to turn caps lock off without using any external program?Yes, on the keyboard, called Caps Lock. Quote just using batch codes?No. Quote Yes, on the keyboard, called Caps Lock. really? even with using registery codes? i found some reg code that we can use them with a .bat file but unfortunatly it needs restart to work !! is there any way?Tried google? Because I found this: http://answers.google.com/answers/threadview/id/411459.htmlno i found this one echo off regedit /s [caps.reg] Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Control Panel\Keyboard] "InitialKeyboardIndicators"="0" but it needs restart windows to work is there a way to activate it without restarting windows? The registry is a database- it stores DATA. It doesn't store OPERATING instructions in the traditional sense, but rather settings for programs to use. The keyboard state can be changed- but it requires ACTUAL code that isn't possible through pure batch script. there is NO way to set the state of these keys. Additionally, I might add that to do so is somewhat presumptious. The state of these keys should be determined by the user via their pressing of the keys- not by a batch script, regardless of wether it is convenient. This is one of the reasons why, with windows, if capslock is ON when your putting your password in, it doesn't automatically change it- even though it could- rather it warns the user that capslock is on. It's a user-defined input state, changing it through a program changes the input and there is a large chance that that change in the input will make it invalid or at the very least not be the desired input of the user.ok thanks for your complete answer |
|