Por que o menu do botão direito da barra de tarefas está faltando em alguns ícones?

0

Isso aconteceu comigo uma vez antes. Eu tentei fixar o Eclipse (Java IDE) na barra de tarefas e, por algum motivo, agora existem 2 ícones. Nenhum deles tem um menu de atalho, por isso não posso removê-los.

Qualquer maneira de se livrar deles?

    
por jamesson 01.08.2014 / 01:36

2 respostas

1

Eu acidentalmente percebi que cada aplicativo, que tem o texto " desinstalador " no nome do arquivo executável, não terá o menu de contexto adequado, que normalmente é exibido em todos os ícones do aplicativo em execução no taskbar (notei isso porque não consegui fixar o ícone do "ZSoft Uninstaller" na barra de tarefas, cujo nome de arquivo executável era "Uninstaller.exe"). Eu acho que esta é uma das muitas idéias "brilhantes" à prova de balas da Microsoft para proteger os usuários de si mesmos ...

Outro motivo para isso pode ser o configuração incorreta no Editor de Diretiva de Grupo .

Click star menu and type gpedit.msc in the search box, press enter. Then you will see Local Group Policy Editor form. Click User Configuration ->Adiministrative Templates ->start menu and taskbar. Find Remove pinned programs from the taskbar and Remove pinned programs list from the start menu in the setting list. Have these two setting been setting to enable? If so, change the settings to disable or not configured, this will let the “pin” item show again.

Ainda outro motivo para isso pode ser removendo a seta de atalho nos ícones do arquivo de link (.lnk) .

To resolve the missing or lost “Open file location” entry, the IsShortcut registry value and the file associations for shortcuts has to be fixed. Run Registry Editor (regedit.exe). Navigate to the following registry key: HKEY_CLASSES_ROOT\lnkfile Right click on the right pane, and select New -> String Value (REG_SZ) to create a new registry value. Name the new registry value as IsShortcut . No value data required. Restart the computer. If you already delete and other registry keys to remove shortcut arrows you must to do the same for all of them...

Espero que isso ajude alguém.

    
por 11.02.2015 / 22:04
0

Solução alternativa

Citando uma resposta que dei em uma pergunta semelhante :

In case you can't remove some pinned app, you might want to clear everything and start fresh.

  1. Open a command prompt.

  2. Type or paste the following commands, pressing Enter each time:

    del /f "%appdata%\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar\*.lnk"
    for /f "tokens=1" %G in ('reg query "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband" ^| findstr /i /c:"Favorites"') do reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v "%~G" /f
    taskkill /im explorer.exe >nul
    taskkill /im explorer.exe /f >nul
    start explorer.exe
    

Referências

por 03.08.2014 / 11:28