Add DIVX and FLV to kind:=video

Solution
As Windows doesn't recognize .DIVX and .FLV files as "video" by default, they won't appear as such in the search results. You surely found more extensions behaving like that. Basically, you have a folder and you know there are such video files in it. If you search for them with Windows Explorer using the option "kind:=video", they won't be listed in the search result.

SOLUTION
You have to add such extentions to Windows' registry "Kind" key.

1. Launch regedit.exe. (But do not do that on your own, if you are a novice in computers and you don't understand what damage the wrong handling of it can cause to your operating system.)

2. Go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\KindMap.

3. Right-click on...

Colif

Win 11 Master
Moderator
here is how to do it for flv,: http://superuser.com/questions/497111/windows-search-you-should-know-that-flv-files-are-videos

Right-click Start, click Command Prompt (Admin)
Type the following and hit ENTER:
reg add HKEY_CLASSES_ROOT\.divx /v PerceivedType /d video /f
Close the Command Prompt window. Wait for search index to update.
Or create a new folder and copy some sample .divx files. Do a search for: kind:=video
See if .divx files are shown in search results.

http://answers.microsoft.com/en-us/windows/forum/windows_10-files/explorer-search-not-all-video-files-are-found-for/535eca3d-a745-49f8-ba5a-7e1ad2fa8b49?auth=1
 

sorein

Honorable
Dec 16, 2013
11
0
10,520
As Windows doesn't recognize .DIVX and .FLV files as "video" by default, they won't appear as such in the search results. You surely found more extensions behaving like that. Basically, you have a folder and you know there are such video files in it. If you search for them with Windows Explorer using the option "kind:=video", they won't be listed in the search result.

SOLUTION
You have to add such extentions to Windows' registry "Kind" key.

1. Launch regedit.exe. (But do not do that on your own, if you are a novice in computers and you don't understand what damage the wrong handling of it can cause to your operating system.)

2. Go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\KindMap.

3. Right-click on KindMap then New/String Value. Name the string as the extension you want to add, like:
.divx
Enter.

4. Right click on the new string and choose Modify...
Type the "Value data" as the intended type, for example:
video

That "Value data" field can contain multiple file types separated by ";", example:
video;movie

The accepted types (kinds) are listed here:
https://msdn.microsoft.com/en-us/library/windows/desktop/cc144136(v=vs.85).aspx

You can consider a .DIVX file as a video and/or a film. Not funnily, it you mark it as "movie" in that "Value data", when you search for the file in Windows Explorer, the "kind" will not be "movie", but "film"!

5. Repeat that for any extension you want to add.

6. Close the registry and go to Control Panel/ Indexing Options/ Advanced Options and the 2nd tab "File types". Select the extension. The radio button below defaults to "Index Properties Only". If you want to index the contents (useful if it is a text file type), then click "Index Properties and File Contents". Check that for any new extension you have added.

7. Go the 1st tab "Index Settings" and click Rebuild. It will take a while for the files to be re-indexed with the new changes you made.
 
Solution