Desativar o acesso de configurações no Windows 10

1

No Windows 10, podemos acessar o aplicativo Configurações pressionando as teclas de atalho do Windows + I ou clicando no botão Iniciar e clicando no ícone Configurações. Existe uma maneira de desativar o atalho de teclado Configurações e remover o ícone Configurações do Menu Iniciar?

Para esclarecer, eu não quero bloquear o aplicativo em si, eu só quero remover o ícone Configurações no menu Iniciar e quando os usuários pressionam WinKey + I, nada vai acontecer.

    
por Durfee 24.02.2017 / 02:49

2 respostas

1

Para remover o ícone "Configurações" do Google, faça o seguinte:

  1. Pressione +I
  2. NavegueatéPersonalização>Iniciarenaparteinferiordireita,selecioneEscolhaquaispastasaparecememIniciar

  3. Najanelaseguinte,alterneConfiguraçõesparaDesligado

Sobreacapacidadededesativar + I , isso é um pouco mais complicado. Se essa for a combinação de teclas do Windows somente que você deseja desativar, provavelmente será necessário considerar softwares como AutoHotkey para fazer isso:

AutoHotkey (AHK) is a free, open-source macro-creation and automation software for Windows that allows users to automate repetitive tasks. It is driven by a scripting language that was initially aimed at providing keyboard shortcuts, otherwise known as hotkeys, that over time evolved into a full-fledged scripting language. And if you're really interested, here's a great video about it here.

You can use AutoHotkey to:

  • Automate almost anything by sending keystrokes and mouse clicks. You can write a mouse or keyboard macro by hand or a macro recorder.

  • Remap keys and buttons on your keyboard, joystick, and mouse.

  • Create hotkeys for keyboard, joystick, and mouse. Essentially any key, button or combination can become a hotkey.

  • Expand abbreviations as you type them. For example, typing "btw" can automatically produce "by the way".

  • Retrieve and change the clipboard's contents.

  • Convert any AHK script into an executable file that can be run on computers where AutoHotkey is not installed.

  • Don't know where to start or how to fix your script? Join the friendly AutoHotkey community and ask for help

( Fonte )

    
por 24.02.2017 / 04:15
1

Não sei como desativar uma combinação específica. Mas se você editar o registro, poderá realizar parte do que precisa.

  1. Digite Open Registry Editor digitando regedit na caixa RUN ou Start search e pressionando Enter.

  2. Agora vá para a seguinte chave:

    HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Políticas \ Explorer

  3. No painel do lado direito, crie um novo DWORD NoWinKeys e defina seu valor como 1

  4. Faça logoff, faça um novo login e não WIN + qualquer tecla funcionará mais.

Para reativar as teclas de atalho WIN + no futuro, você pode excluir as DWORD NoWinKeys criadas na etapa 3 ou simplesmente fornecer o valor 0 e reiniciar.

    
por 24.02.2017 / 03:47