MatchTextExactly Property Example
This example searches the C:\My Documents folder and returns all files that contain the word "Run" either in the body text or in the file properties.
With Application.FileSearch
.NewSearch
.LookIn = "C:\My Documents"
.TextOrProperty = "Run"
.MatchTextExactly = True
.FileType = msoFileTypeAllFiles
End With