remove Adicionar à lista do Windows Media Player a partir de pastas

0

Eu executei o script abaixo, fornecido em outro post Como remover a lista" Adicionar ao Windows Media Player "do menu de contexto , e embora pareça ter funcionado para arquivos individuais dos tipos de arquivo listados, ainda aparece ao clicar com o botão direito do mouse sobre uma pasta, contendo, por exemplo, arquivos WAV ou FLAC, mas não para arquivos mp3.

Windows Registry Editor Version 5.00

[-HKEY_CLASSES_ROOT\WMP11.AssocFile.3G2\shell\Enqueue] [-HKEY_CLASSES_ROOT\WMP11.AssocFile.3GP\shell\Enqueue] [-HKEY_CLASSES_ROOT\WMP11.AssocFile.ADTS\shell\Enqueue] [-HKEY_CLASSES_ROOT\WMP11.AssocFile.AIFF\shell\Enqueue] [-HKEY_CLASSES_ROOT\WMP11.AssocFile.ASF\shell\Enqueue] [-HKEY_CLASSES_ROOT\WMP11.AssocFile.ASX\shell\Enqueue] [-HKEY_CLASSES_ROOT\WMP11.AssocFile.AU\shell\Enqueue] [-HKEY_CLASSES_ROOT\WMP11.AssocFile.AVI\shell\Enqueue] [-HKEY_CLASSES_ROOT\WMP11.AssocFile.M2TS\shell\Enqueue] [-HKEY_CLASSES_ROOT\WMP11.AssocFile.m3u\shell\Enqueue] [-HKEY_CLASSES_ROOT\WMP11.AssocFile.M4A\shell\Enqueue] [-HKEY_CLASSES_ROOT\WMP11.AssocFile.MIDI\shell\Enqueue] [-HKEY_CLASSES_ROOT\WMP11.AssocFile.MOV\shell\Enqueue] [-HKEY_CLASSES_ROOT\WMP11.AssocFile.MP3\shell\Enqueue] [-HKEY_CLASSES_ROOT\WMP11.AssocFile.MP4\shell\Enqueue] [-HKEY_CLASSES_ROOT\WMP11.AssocFile.MPEG\shell\Enqueue] [-HKEY_CLASSES_ROOT\WMP11.AssocFile.TTS\shell\Enqueue] [-HKEY_CLASSES_ROOT\WMP11.AssocFile.WAV\shell\Enqueue] [-HKEY_CLASSES_ROOT\WMP11.AssocFile.WAX\shell\Enqueue] [-HKEY_CLASSES_ROOT\WMP11.AssocFile.wma\shell\Enqueue] [-HKEY_CLASSES_ROOT\WMP11.AssocFile.WMV\shell\Enqueue] [-HKEY_CLASSES_ROOT\WMP11.AssocFile.WPL\shell\Enqueue] [-HKEY_CLASSES_ROOT\WMP11.AssocFile.WVX\shell\Enqueue]

Como posso me livrar dele para todas as pastas também?

O tópico começou em Como remover a lista" Adicionar ao Windows Media Player "do menu de contexto

mas não abordou a questão do menu de contexto ao clicar com o botão direito do mouse nas pastas.

    
por Joseph de Nicola 18.12.2017 / 16:37

1 resposta

0

O seguinte arquivo .reg removerá o item do menu de contexto das pastas:

Windows Registry Editor Version 5.00

[-HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Audio\shell\Enqueue]

Caso você queira recuperar o item do menu de contexto, aqui está o arquivo .reg para fazer isso:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Audio\shell\Enqueue]
@="&Add to Windows Media Player list"
"MUIVerb"=hex(2):40,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,\
  6f,00,74,00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,\
  00,75,00,6e,00,72,00,65,00,67,00,6d,00,70,00,32,00,2e,00,65,00,78,00,65,00,\
  2c,00,2d,00,39,00,38,00,30,00,30,00,00,00
"NeverDefault"=""

[HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Audio\shell\Enqueue\command]
"DelegateExecute"="{45597c98-80f6-4549-84ff-752cf55e2d29}"
    
por 07.01.2018 / 22:20