Good sirs.
Can I do this? (on the fly, I mean... without setting up an exclude list)
I can say m:, and only results from drive m: will show up, but if I go l: m:, no results at all show up.
I want to search on just the L and M drives.
???
Thanks
restrict search to certain drive letters
Re: restrict search to certain drive letters
Please try searching for:
The | means OR
Code: Select all
l:|m:
Re: restrict search to certain drive letters
I think he actually want an AND (combined with the OR).
So you'd have to "group" the drive letters together using < >.
So...
Would search for 'michael garrison' on either the L: or M: drive.
Or you could use:
So you'd have to "group" the drive letters together using < >.
So...
Code: Select all
< L: | M: > michael garrison
Or you could use:
Code: Select all
L: michael garrison | M: michael garrison
Re: restrict search to certain drive letters
Thank you sirs!