Set the serach "area" to list view and tack a screen shot.
The way to out put a file list of a certin criteri using a a console and out put file is as follows:
1. Execute a command similare to this (must execute this while the working directory is C:, for this to work there must be a disk in A

xcopy * A: /E /L /Y > C:\filelist.txt This command will output a file list to the file filelist.txt
2. Use findstr to find line in the text file which meet your critea, the command usage should be some thing like this: findstr "perl" C:\filelist.txt > filelist2.txt this will output any line in the text file filelist.txt to the file filelist2.txt, since i have active pearl installed it finds quite a few result. The main problem with this method of looking for files is that it looks at directory names aswell, but so dose windows file searching.