You can test if the found files are shortcuts by looking at their extension:
With appAccess.FileSearch
...
For i = 1 To .FoundFiles.Count
If LCase(Right(.FoundFiles(i), 3)) = "lnk" Then
' Shortcut - ignore
Else
' Code to process file goes here
...
End If
Next i
...
End With



