6

How may I get Explorer to preview .m3u files as text? I have tried Windows 7 - Preview other file types as text in Preview Pane and carefully checked, but no joy.

I got no success with .m3u using PreviewConfig:

1

or the manual method too:

2

ChrisJJ
  • 381

3 Answers3

5
  1. Start >> Regedit.exe

  2. Find HKEY_CLASSES_ROOT\.m3u key and check the 'Default' setting (in my case VLC.m3u)

enter image description here

  1. Find HKEY_CLASSES_ROOT\VLC.m3u (in this path substitute VLC.m3u with the value of your default setting in HKEY_CLASSES_ROOT\.m3u)

  2. Create a new key in HKEY_CLASSES_ROOT\VLC.m3u: shellex

  3. Then in HKEY_CLASSES_ROOT\VLC.m3u\shellex also a new key: {8895b1c6-b41f-4c1c-a562-0d564250836f}, so it should look like this:

enter image description here

  1. The {8895b1c6-b41f-4c1c-a562-0d564250836f} key tells Windows that you want to use a preview handler, now you only should specify which one you want to use. Set HKEY_CLASSES_ROOT\VLC.m3u\{8895b1c6-b41f-4c1c-a562-0d564250836f} Default to this value: {1531d583-8375-4d3f-b5fb-d23bbd169f22} (text handler ID)

  2. If you want to use other handlers in shell you can find their ID's in the following key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\PreviewHandlers

qasdfdsaq
  • 6,779
anghra
  • 101
0

In Media Jukebox, uncheckmark the m3u File Association

enter image description here

The clue that led me here was the Note in the PreviewConfig image above - despite that nothing on that Media Jukebox dialog suggests the association affects more than Open, and Open on a .m3u does not invoke Media Jukebox, but instead Textpad.

Oddly, recheckmarking the File Association does not restore the issue i.e. preview continues to work.

ChrisJJ
  • 381
-1

right click the file -- > open with --> choose notepad from the list of programs, then put a checkmark in the "open future files with this program" (or whatever it says to that effect)

SnakeDoc
  • 693