help Adicionar qualquer atalho de aplicativo no menu de contexto da área de trabalho

0

eu tenho a informação aqui mas depois adicionando que eu não recebi nenhum atalho no menu do meu concurso de desktop :(  pls me ajuda eu quero apenas no meu menu de contexto da área de trabalho

  1. Open regedit and goto:

CODEHKEY_CLASSES_ROOT\Directory\Background\shell now under this key create another key with any name and in right-side pane set its value to the label, which you want to show in desktop context menu, like Media Player, Winamp, Firefox, anything else.

  1. Now create another key under this newly created key with name command. and in right-side pane set its value to the exact path of application, like:

C:\Program Files\Windows Media Player\wmplayer.exe C:\Program Files\Winamp\winamp.exe etc...

  1. Thats it. Now you can check your favorite application shortcut in desktop context menu.

  2. You can create as many shortcut as you want. Simply create a separate key for all the applications.

  3. Following is a ready-made code:

CODEWindows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\Background\shell\WMP] @="Windows Media Player"

[HKEY_CLASSES_ROOT\Directory\Background\shell\WMP\command] @="C:\Program Files\Windows Media Player\wmplayer.exe" Just change the label and path to ur desired application and save with the name "vishal.reg" (including the quotes) and run it.

U can also set the application shortcut to show only when u press key by adding "Extended" String value in right-side pane of the newly created key:

CODEWindows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\Background\shell\WMP] @="Windows Media Player" "Extended"=""

[HKEY_CLASSES_ROOT\Directory\Background\shell\WMP\command] @="C:\Program Files\Windows Media Player\wmplayer.exe"

    
por blackjack 21.06.2010 / 06:08

2 respostas

2

Somente o Windows Vista e o Windows 7 suportam a adição de entradas de menu por meio dessa chave do Registro:

HKEY_CLASSES_ROOT\Directory\Background\shell\

Antes disso (por exemplo, Windows XP), entradas de menu só poderiam ser adicionadas a Directory\Background via shellex :

HKEY_CLASSES_ROOT\Directory\Background\shellex\

shellex é exponencialmente mais difícil de usar, porque requer que você escreva sua própria DLL COM, presumindo usar C ++ e registre-a no sistema. Isso não é tarefa fácil para um hacker de registro de poltrona.

Então, basicamente, você não pode fazer facilmente o que está tentando fazer. Pelo menos não no WinXP.

    
por 11.05.2011 / 23:09
1

Supondo que você esteja falando sobre o Windows XP, a maneira mais simples de fazer isso é baixar e instalar o TweakUI da Microsoft. É um dos PowerToys do Windows XP, disponível no link .

Depois de executar o TweakUI, clique em "Modelos" na lista à esquerda. Você pode ativar / desativar modelos existentes ou adicionar novos modelos.

    
por 16.07.2010 / 17:01