Fixlet for searching files

The key is to not perform this search using Relevance as that’s throttled by the client. Here’s an example to create a batch file and use the native DOS commands to do it -

action uses wow64 redirection false
delete __appendfile
appendfile {concatenation "%0d%0a" of ("dir %22" & item 1 of it & "\" & item 0 of it & "%22 /s /b >> c:\listing.txt") of (("password*";"pwd";"passwd*"), pathnames of folders "\" of drives whose (type of it="DRIVE_FIXED") ) }
delete find_files.cmd
move __appendfile find_files.cmd
delete c:\listing.txt
waithidden cmd /c find_files.cmd

When finished, the results should be in c:\listing.txt which you can read with an analysis or other tools.