For me, re-indexing does not occur in normal activity once it has completed -- yes, it takes a long time at first (over 500000 Files, just jpg's)
Several months ago, re-indexing also happened, but with the more current 1.5a versions it does not.
My solution to the original problem works now, albeit is not very satisfying.
I followed the method given in
viewtopic.php?f=4&t=11663&p=46540&hilit=missing#p46537.
Essentially, this adds a (global!) entry to the context menu of the selected file (singular!), launching this query:
command :=cmd /C Everything64.exe -new-window -filter everything -s sha256:[get-property:"%1",sha256]
(Requires obviously that the path variable includes the Everything 1.5 location)
For reasons I do not understand, it does not work without running the cmd-Processor, i.e., this does NOT work for me:
command:= "c:\ program files\everything 1.5a\Everything64.exe" -new-window -filter everything -s sha256:[get-property:"%1",sha256]
A major problem exists however when you try to add the command key, because it is using the (Default) - key, which always comes up as type REG_SZ instead of REG_EXPAND_SZ, but that's required if you want to use "%1". I eventually found a way, but can't explain what is going on there. It would be much simpler if the Key's name was a "normal" key name, the type of which can easily be modified.
This is far from what I really would like: a hotkey to $Exec this query. But as I read it so far, there are only 4 available "slots" in Context menu that have a modifiable $Exec, and there seems to be no way to add any. Also, the keyboard table is not able to access any (added) context menu entry.
Am I wrong?
Rolf