Calendar of Posts

September 2010
M T W T F S S
« Aug    
 12345
6789101112
13141516171819
20212223242526
27282930  

Contributors

Paul Mayhew dbmsguy.com

Ads by Google :)

find files using windows cmd

To find text in a directory of files, use the following Windows command (it’s faster than Windows Search):
  • This will search all files in the current directory for the text you are looking for: findstr /c:”I want to find this text” *.*
  • If you want to also search sub-directories use the /s option: findstr /s /c:”I want to find this text” *.*

You must be logged in to post a comment.