searching for files by extension

  • Thread starter Thread starter SBS user
  • Start date Start date
Is there a way to search for two thing at once with Vista. In XP I could
type:

*.pst,*.pfd

And it would return all pst's and all pdf's. When I do this in vista I get
nothing.

The search syntax has changed and wild card characters are not used for
searches by file extension. Try this:

ext:(pst OR pfd)

The OR operator must be capitalized.

For more on the new style of queries, see this page:
http://www.microsoft.com/windows/products/winfamily/desktopsearch/technicalresources/advquery.mspx


Doug M. in NJ
 
SBS user said:
Is there a way to search for two thing at once with Vista. In XP I could
type:

*.pst,*.pfd

And it would return all pst's and all pdf's. When I do this in vista I
get
nothing.

Replace comma with OR

*.pdf OR *.pfd

or

ext:pdf OR ext:pfd

This would faster as it tells the search engine you are only looking for
files with extension pdf or pfd
 
Thanks for showing me this

Tae Song said:
Replace comma with OR

*.pdf OR *.pfd

or

ext:pdf OR ext:pfd

This would faster as it tells the search engine you are only looking for
files with extension pdf or pfd
 
Back
Top