By the way, while waiting OP to re-index I thought this would be a good place and time to explain a bit more how to fine tune
Windows Search using the search string used in this thread as an example.
We have asked OP to search his missing folder using the string
Exact_Object_Type Partial_object_name:
Code:
[B][COLOR="DarkRed"]type:="File folder"[/COLOR][/B] [B][COLOR="DarkGreen"]name:Axialis[/COLOR][/B]
The difference between exact and partial is the = sign. When OP searched for a folder
name:Axialis the search found all folders where Axialis is A) name of the folder and B) part of the folder name.
We can modify that search to
Exact_Object_Type Exact_object_name simply by adding one
= sign:
Code:
[B][COLOR="DarkRed"]type:="File folder"[/COLOR][/B] [B][COLOR="DarkGreen"]name:=Axialis[/COLOR][/B]
Examples
Try this search:
Code:
[B][COLOR="DarkRed"]type:="File folder"[/COLOR][/B] [B][COLOR="DarkGreen"]name:Docu[/COLOR][/B]
It finds all folders with folder name
Docu or partial folder name
Docu so it will for instance find
Documents and
My Documents:
Now edit the search to search exact match
Docu:
Code:
[B][COLOR="DarkRed"]type:="File folder"[/COLOR][/B] [B][COLOR="DarkGreen"]name:=Docu[/COLOR][/B]
As it only finds exact matches, folders named
Docu, it finds nothing on my computer:
Now let's search for folders with partial folder name
Documents:
Code:
[B][COLOR="DarkRed"]type:="File folder"[/COLOR][/B] [B][COLOR="DarkGreen"]name:Documents[/COLOR][/B]
This search finds for instance
Documents and
My Documents:
And last, let's search for exact folder name
Documents:
Code:
[B][COLOR="DarkRed"]type:="File folder"[/COLOR][/B] [B][COLOR="DarkGreen"]name:=Documents[/COLOR][/B]
You noticed how the
My Documents are filtered from our last search for now we are searching an exact match:
That's the power of one single = sign

!
Kari