Is there any way to disable the delay caused when holding a key? I want it to do
aaaaaaaaaaa instead of a aaaaaaaaa
EDIT: I want to do this via the command prompt.
As far as I am aware you cannot completely remove the keyboard delay. The shortest delay you can set is "approximately 250 milliseconds".
To set the shortest delay possible:
"Start" > "Control Panel" > "Keyboard".
In the "Keyboard Properties" dialog select the "Speed" tab.
Set the "Repeat delay" to "Short" by dragging the slider to the right hand end.
Click "OK".
cmd shell?Use the following command:
reg add "HKCU\Control Panel\Keyboard" /v KeyboardDelay /t REG_SZ /d "0" /f
The value "0" represents the shortest delay possible.
KeyboardDelay
Determines how long after a key is pressed and held down that the character begins to repeat. The values 0 (shortest delay; approximately 250 milliseconds) and 3 (longest delay; approximately 1 second) correspond to the four increments on the Repeat delay scale in Keyboard in Control Panel.
Source KeyboardDelay