Can I change the preview area of โ€‹โ€‹Windows 7 so that only preview text appears in HTML files instead of html rendering?

When I click on html files in explorer, the preview pane is currently trying to display html for preview. I would like the behavior to simply display me the text without interpreting the tags. Is there a way to do this by contacting the registry or changing the settings somewhere?

+5
source share
3 answers

Well, I eventually figured out how to do this. What was published above was close, but not quite as if I were editing the wrong values. The PreviewConfig utility tried to change the wrong key, but could not, because it was blocked. In the end, I went through a long process to allow editing a locked registry key when I realized that this was the wrong place.

If you want the preview pane to display plain text for HTML files rather than rendering them, open the registry editor and go to:

HKEY_CLASSES_ROOT\htmlfile\shellex\{8895B1C6-B41F-4C1C-A562-0D564250836F}

Edit the default key and replace the value with {1531d583-8375-4d3f-b5fb-d23bbd169f22}, and you should be set.

0
source

: PreviewConfig ( zip ), . , .


HTML , ( .reg ):

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\htmlfile\shellex\{8895B1C6-B41F-4C1C-A562-0D564250836F}]
@="{1531d583-8375-4d3f-b5fb-d23bbd169f22}"

: :

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shellex\{8895B1C6-B41F-4C1C-A562-0D564250836F}]
@="{1531d583-8375-4d3f-b5fb-d23bbd169f22}"
+5

im ,

, , HKEY_CLASSES_ROOT.reg. , ( ), , ProgID, .

ProgID , . ,.reg "regfile" ProgID, .

ProgID, : HKEY_CLASSES_ROOT\regfile. , shellex, :

{8895b1c6-b41f-4c1c-a562-0d564250836f}

, Windows Explorer, . , , ( ) , .

( ) :

{1531d583-8375-4d3f-b5fb-d23bbd169f22}

Windows TXT, , Preview Handlers :

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\PreviewHandlers

... , {031EE060-67BC-460d-8847-E4A7C5E45A27} .

REG Preview:

, .

, , ( , , , ), PreviewConfig Windows Vista, . , , .

, , Windows Media . , .mkv, Windows Media , . "", .

http://www.howtogeek.com/howto/windows-vista/make-windows-vista-explorer-preview-pane-work-for-more-file-types/

0

All Articles