Found a bug in "Everything"? report it here
lujomu
Posts: 2 Joined: Fri Jul 08, 2022 12:29 pm
Post
by lujomu » Fri Jul 08, 2022 12:39 pm
According to
this post Everything looks in the
Code: Select all
SystemFileAssociations\<Extension> keys for
PreviewHandlers , so I would assume it also checks those locations for a
PerceivedType (like Windows Explorer does) - but it seems it does not.
E.g. adding the following registry value enables the preview for
.log files in Windows Explorer, but not in Everything.
Code: Select all
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\SystemFileAssociations\.log]
"PerceivedType"="text"
Last edited by void on Fri Jul 08, 2022 12:42 pm, edited 1 time in total.
Reason: fixed link
void
Developer
Posts: 19899 Joined: Fri Oct 16, 2009 11:31 pm
Post
by void » Fri Jul 08, 2022 12:43 pm
Everything doesn't look under HKEY_CLASSES_ROOT\SystemFileAssociations\.log
Instead, Everything looks under:
HKEY_CLASSES_ROOT\.log
Please try adding the "PerceivedType"="text" DWORD value here.
I'll look into adding support for HKEY_CLASSES_ROOT\SystemFileAssociations\.log
lujomu
Posts: 2 Joined: Fri Jul 08, 2022 12:29 pm
Post
by lujomu » Fri Jul 08, 2022 1:42 pm
Thanks for the clarification!