Jump to content

Windows File Explorer search not finding text in files that is obviously there


Recommended Posts

Guest BitEngineer
Posted

After looking at the numerous inquiries about how to make this work and being unsuccessful, and not wanting to waste a lot of time trying to make it work, I resorted to using the following MS-DOS command:FOR /F %i IN ('FINDSTR /M "string-to-be-searched" *.txt *.tmp') DO Notepad.exe "%i"This command will open each file containing the search argument with Notepad. Of course, it will only work if the target files contain plain text.Change "string-to-be-searched" to your desired search argument. You can use regular expressions by specifying the /R switch on the FINDSTR command. (See Microsoft

 

More...

  • Replies 0
  • Created
  • Last Reply

Popular Days

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...