Como desabilitar a tecla Insert no Windows
Almost anyone who has used a wordprocessor has accidentally hit the Insert key and overwritten when they thought they were editing. This article describes a simple way to disable the Insert key on your keyboard.
Whenever you press a key, a windows message is created, which contains a key code that uniquely identifies the key pressed. Programmes (like Microsoft Word) look for keypress messages and take actions based on the key code in the message. By mapping the insert key press event to null, windows send a message containing null for the key code when the Insert key is pressed. Programmes receiving the message, therefore, do not perform the action associated with an insert key press event, freeing you from having to worry about overwriting things again.
- Go to Start → Run → regedit
- Go to HKLM\System\CurrentControlSet\Control\Keyboard Layout
- Right-click on the right half of the screen and choose New → Binary Value
- Name the new value Scancode Map
- Enter 000000000000000002000000000052E000000000
- Close regedit
- Reboot.
- Optional: you can take the Insert key off of your keyboard when done.
Se você fizer isso com o Windows 7 regedit, você tem que inserir o valor hexadecimal em linhas de 8 bytes, assim:
Value Data:
0000 00 00 00 00 00 00 00 00
0008 02 00 00 00 00 00 52 E0
0010 00 00 00 00
Arquivo de registro (.reg) para aplicar a correção conforme descrito acima
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout]
"Scancode Map"=hex:00,00,00,00,00,00,00,00,02,00,00,00,00,00,52,e0,00,00,00,00
Coloque o texto acima em um arquivo com extensão .reg (por exemplo, disable-insert.reg
) e clique duas vezes.