Q:

findstr in all files

Find strings with case-insensitive search using -i flag as follows:
findstr -i "Case_insensitive_substring"
For example:
dir | findstr -i "Case_insensitive_file_name"
0
Just specify /S to search in all subfolders and match all files with regex *:
findstr /S string_to_search *
0

New to Communities?

Join the community