Desativar o Windows Key Windows 10

1

O cabeçalho diz a maior parte. Eu estou tentando encontrar uma maneira de desativar a chave do Windows através de GPO, política local ou uma edição no registro, mas o Google tem sido menos do que útil.

    
por MrPalindrome 22.06.2016 / 18:04

3 respostas

0

Existem várias formas de desativar a chave do Windows, conforme visto em esta página

Opção 1: Editor do Registro

  1. Click Start, click Run, type regedt32, and then click OK.
  2. On the Windows menu, click HKEY_LOCAL_ MACHINE on Local Machine.
  3. Double-click the System\CurrentControlSet\Control folder, and then click the Keyboard Layout folder.

  4. On the Edit menu, click Add Value, type in Scancode Map, click REG_BINARY as The Data Type, and then click OK.

  5. Type 00000000000000000300000000005BE000005CE000000000 in the Data field, and then click OK.

  6. Close Registry Editor and restart the computer.

Opção 2: AutoHotKey

  1. Download AutoHotKey from http://www.autohotkey.com/

  2. Run it, then right click on its icon in the taskbar.Select 'Edit This Script' and it'll open the default script in Notepad

  3. Somewhere between the comments (which are marked with semi-colons) add the following:

    ~LWin Up:: return

    ~RWin Up:: return

  4. Now just save the file, right click on AutoHotkey again, and select 'Reload This Script.'

    
por 23.06.2016 / 10:22
0

Experimente sharpkeys , é como uma interface gráfica para o registro. Qualquer alteração que você faça é gravada no registro, portanto, não há daemons nem processos em segundo plano. Basta fazer a alteração, fazer logoff e fazer login. Os recursos incluem:

re-mapear chaves
desativar chaves

e é um software de código aberto e é pequeno.

    
por 23.06.2016 / 10:28
0

Como o CJ1992 diz (infelizmente eu não pude comentar, portanto, novo post), mas a sintaxe do AutoHotkey agora parece ser (pode ser que eu use a versão 1.1.30.00 - 22 de agosto de 2018):

LWin::return
RWin::return

citada no site do AutoHotkey

    
por 25.10.2018 / 11:44