How do I (recursively) search ALL file contents in Windows 7?
“user3245549” is right: All of the above answers with “for loops” and nested bat files are mumbo jumbo. All you need is to just use “findstr” – example: C:\temp> findstr /S /C:”/work” * | more <– this will find the string “/work” in any file or C:\temp> findstr /S /C:”/work” “*.*” | more or C:\temp> … Read more