Windows (Vista)에서는 폴더를 볼 때 항목을 마우스 오른쪽 버튼으로 클릭하면 "Windows Media Player로 재생"메뉴가 있습니다.
하위 메뉴가 표시되지 않도록 설정하는 방법은 무엇입니까?
(Windows Media Player를 제거하고 싶지는 않지만)
모딩 레지스트리가 필요한 경우 문제가 없습니다. 어디를 알아야합니다 ...
Windows (Vista)에서는 폴더를 볼 때 항목을 마우스 오른쪽 버튼으로 클릭하면 "Windows Media Player로 재생"메뉴가 있습니다.
하위 메뉴가 표시되지 않도록 설정하는 방법은 무엇입니까?
(Windows Media Player를 제거하고 싶지는 않지만)
모딩 레지스트리가 필요한 경우 문제가 없습니다. 어디를 알아야합니다 ...
답변:
레지스트리에서 관련 항목이 여러 번 발생하지만 상황에 맞는 메뉴 항목을 비활성화하려면 한 곳만 제거하면됩니다. 또한 상황에 맞는 메뉴 항목은 오디오, 이미지 또는 비디오인지에 따라 다른 유형의 미디어 파일 및 폴더에 대해 별도로 존재합니다. 마지막으로 WMP에서 항목을 재생하고 WMP 재생 목록에 추가 할 별도의 항목이 있습니다. 이렇게하면 12 개의 순열이 제거되어야합니다 (이미지 파일에는 항목이없고 이미지 폴더 만있는 것이므로 실제로 10 개만).
파일과 폴더 모두에 대해 세 가지 미디어 유형 모두에서 두 명령을 모두 제거하는 방법은 다음과 같습니다. 다음 내용으로 .reg 파일을 만들고 실행하십시오.
REGEDIT4
;Remove "Play with Windows Media Player" context menu entries
[-HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Audio\shell\Enqueue]
[-HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Audio\shell\Play]
[-HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Image\shell\Enqueue]
[-HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Image\shell\Play]
[-HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Video\shell\Enqueue]
[-HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Video\shell\Play]
[-HKEY_CLASSES_ROOT\SystemFileAssociations\audio\shell\Enqueue]
[-HKEY_CLASSES_ROOT\SystemFileAssociations\audio\shell\Play]
[-HKEY_CLASSES_ROOT\SystemFileAssociations\video\shell\Enqueue]
[-HKEY_CLASSES_ROOT\SystemFileAssociations\video\shell\Play]
다시 추가하면 시간이 훨씬 길어 지므로 백업 할 수 있습니다.
상황에 맞는 메뉴 항목을 유지하고 액셀러레이터 ( P) 를 제거하기 만하면 먼저 WMP 항목을 거치지 않고 파일을 쉽게 붙여 넣을 수있게하려면 다른 레지스트리 항목을 수정해야합니다.
In this key:
[HKEY_CLASSES_ROOT\Local Settings\MuiCache\149\52C64B7E]
Change this value:
"@C:\Windows\system32\unregmp2.exe,-9801"="&Play with Windows Media Player"
To this (or something else; the & marks the accelerator):
"@C:\Windows\system32\unregmp2.exe,-9801"="Play with Windows Media Player"
Similarly, the Add to WMP entry is:
"@C:\Windows\system32\unregmp2.exe,-9800"="&Add to Windows Media Player list"
REGEDIT4
;Restore "Play with Windows Media Player" context menu entries
[HKEY_CLASSES_ROOT\SystemFileAssociations\audio\shell\Enqueue]
@="&Add to Windows Media Player list"
"MUIVerb"=hex(2):40,25,53,79,73,74,65,6d,52,6f,6f,74,25,5c,73,79,73,74,65,6d,33,32,5c,75,6e,72,65,67,6d,70,32,2e,65,78,65,2c,2d,39,38,30,30,00
"NeverDefault"=""
[HKEY_CLASSES_ROOT\SystemFileAssociations\audio\shell\Enqueue\command]
"DelegateExecute"="{45597c98-80f6-4549-84ff-752cf55e2d29}"
[HKEY_CLASSES_ROOT\SystemFileAssociations\audio\shell\Play]
@="&Play with Windows Media Player"
"MUIVerb"=hex(2):40,25,53,79,73,74,65,6d,52,6f,6f,74,25,5c,73,79,73,74,65,6d,33,32,5c,75,6e,72,65,67,6d,70,32,2e,65,78,65,2c,2d,39,38,30,31,00
"NeverDefault"=""
[HKEY_CLASSES_ROOT\SystemFileAssociations\audio\shell\Play\command]
"DelegateExecute"="{ed1d0fdf-4414-470a-a56d-cfb68623fc58}"
[HKEY_CLASSES_ROOT\SystemFileAssociations\video\shell\Enqueue]
@="&Add to Windows Media Player list"
"MUIVerb"=hex(2):40,25,53,79,73,74,65,6d,52,6f,6f,74,25,5c,73,79,73,74,65,6d,33,32,5c,75,6e,72,65,67,6d,70,32,2e,65,78,65,2c,2d,39,38,30,30,00
"NeverDefault"=""
[HKEY_CLASSES_ROOT\SystemFileAssociations\video\shell\Enqueue\command]
"DelegateExecute"="{45597c98-80f6-4549-84ff-752cf55e2d29}"
[HKEY_CLASSES_ROOT\SystemFileAssociations\video\shell\Play]
@="&Play with Windows Media Player"
"MUIVerb"=hex(2):40,25,53,79,73,74,65,6d,52,6f,6f,74,25,5c,73,79,73,74,65,6d,33,32,5c,75,6e,72,65,67,6d,70,32,2e,65,78,65,2c,2d,39,38,30,31,00
"NeverDefault"=""
[HKEY_CLASSES_ROOT\SystemFileAssociations\video\shell\Play\command]
"DelegateExecute"="{ed1d0fdf-4414-470a-a56d-cfb68623fc58}"
[HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Audio\shell\Enqueue]
@="&Add to Windows Media Player list"
"MUIVerb"=hex(2):40,25,53,79,73,74,65,6d,52,6f,6f,74,25,5c,73,79,73,74,65,6d,33,32,5c,75,6e,72,65,67,6d,70,32,2e,65,78,65,2c,2d,39,38,30,30,00
"NeverDefault"=""
[HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Audio\shell\Enqueue\command]
"DelegateExecute"="{45597c98-80f6-4549-84ff-752cf55e2d29}"
[HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Audio\shell\Play]
@="&Play with Windows Media Player"
"MUIVerb"=hex(2):40,25,53,79,73,74,65,6d,52,6f,6f,74,25,5c,73,79,73,74,65,6d,33,32,5c,75,6e,72,65,67,6d,70,32,2e,65,78,65,2c,2d,39,38,30,31,00
"NeverDefault"=""
[HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Audio\shell\Play\command]
"DelegateExecute"="{ed1d0fdf-4414-470a-a56d-cfb68623fc58}"
[HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Image\shell\Enqueue]
@="&Add to Windows Media Player list"
"MUIVerb"=hex(2):40,25,53,79,73,74,65,6d,52,6f,6f,74,25,5c,73,79,73,74,65,6d,33,32,5c,75,6e,72,65,67,6d,70,32,2e,65,78,65,2c,2d,39,38,30,30,00
"NeverDefault"=""
[HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Image\shell\Enqueue\command]
"DelegateExecute"="{45597c98-80f6-4549-84ff-752cf55e2d29}"
[HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Image\shell\Play]
@="&Play with Windows Media Player"
"MUIVerb"=hex(2):40,25,53,79,73,74,65,6d,52,6f,6f,74,25,5c,73,79,73,74,65,6d,33,32,5c,75,6e,72,65,67,6d,70,32,2e,65,78,65,2c,2d,39,38,30,31,00
"NeverDefault"=""
[HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Image\shell\Play\command]
"DelegateExecute"="{ed1d0fdf-4414-470a-a56d-cfb68623fc58}"
[HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Video\shell\Enqueue]
@="&Add to Windows Media Player list"
"MUIVerb"=hex(2):40,25,53,79,73,74,65,6d,52,6f,6f,74,25,5c,73,79,73,74,65,6d,33,32,5c,75,6e,72,65,67,6d,70,32,2e,65,78,65,2c,2d,39,38,30,30,00
"NeverDefault"=""
[HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Video\shell\Enqueue\command]
"DelegateExecute"="{45597c98-80f6-4549-84ff-752cf55e2d29}"
[HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Video\shell\Play]
@="&Play with Windows Media Player"
"MUIVerb"=hex(2):40,25,53,79,73,74,65,6d,52,6f,6f,74,25,5c,73,79,73,74,65,6d,33,32,5c,75,6e,72,65,67,6d,70,32,2e,65,78,65,2c,2d,39,38,30,31,00
"NeverDefault"=""
[HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Video\shell\Play\command]
"DelegateExecute"="{ed1d0fdf-4414-470a-a56d-cfb68623fc58}"
그냥 실행 :
regsvr32 /u wmpshell.dll
Windows Media Player 셸 확장의 등록이 취소 되어 WMP로 재생 항목 이 제거 됩니다.
HKCR\CLSID
관련 SystemFileAssociations
항목이 아닌에서 항목 만 제거 합니다.
이 방법 (win7)이 Win 10 (10586)에서 저에게 효과적이며 레지스트리 편집 비즈니스보다 덜 무섭습니다 : http://www.freewaregenius.com/how-to-remove-windows-media- Windows 7에서 마우스 오른쪽 클릭 컨텍스트 메뉴 /
제거하는 것을 잊지 마십시오
HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Audio\shellex\ContextMenuHandlers\WMPShopMusic
오디오 디렉토리 상황에 맞는 메뉴에서 "Shop for Music Online"을 제거합니다.
Windows Vista (및 Windows 7?)에서 다음 키를 제거 할 수 있습니다.
HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Audio\shellex\ContextMenuHandlers\WMPAddToPlaylist
HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Image\shellex\ContextMenuHandlers\WMPAddToPlaylist
HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Video\shellex\ContextMenuHandlers\WMPAddToPlaylist
이들 모두의 기본값 {F1B9284F-E9DC-4e68-9D7E-42362A59F0FD}
은 Windows Media Player에 미디어를 추가하기위한 컨텍스트 처리기의 CLSID입니다.
Windows 탐색기 파일 메뉴에서 성가신 "Windows Media Player 목록에 추가"항목을 제거하기 위해이 작업을 수행했습니다. 즉, 폴더가 현재 선택되어 있어도 ALT-F, ALT-W 키 시퀀스는 항상 "New & Folder"를 선택합니다. 탐색기에서. 그래도 개별 파일을 대기열에 넣을 수 있기를 원했습니다.
참고가 또한 그 WMPPlayAsPlaylist
와 WMPShopMusic
이 디렉토리 협회에 키가 당신은뿐만 아니라 삭제할 수 있습니다.
키를 삭제 한 후 재부팅했습니다. 이것이 필요한지 모르겠습니다.
셸 확장명 "Windows Media Player로 재생"제거
I had the same problem, but unfortunately, I didn't find the keys I was
looking for in the registry and it's too boring going through Folder
Options. After a quick Google search, I dug this up:
1. Go to Start > Run
2. Type in "regsvr32 /u wmpshell.dll" (without the quotes)
3. Hit OK
4. Voila! No more WMP shell extensions