Menu
Search for Text in Text Files

Getting Windows Folder Search function to reliably find text within a file is a real trick. There are several places within windows where you can configure search, but it never seems to do a reliable job. The solution is to use the simple batch file shown below:

findstr /s /i /m "string" *.*
pause

Today, most people use Windows Operating System through it's graphical user interface (GUI) and perform tasks using check boxes and drop-down lists. However, the first PCs didn't have a GUI, they used the Disk Operating System (DOS). DOS has a text interface where the user performs tasks by typing text commands. The interface is referred to as the command line. The DOS command line is still available in Windows today.

The best way to use DOS is to type commands into a file called a batch file. To create a batch file just create a text file with Windows Notepad, type in your DOS commands, then save the file with a convenient name and the file extension .bat . To execute a batch file just double click on the file's name in Windows Explorer.

The batch file shown above uses two lines. The first line uses the findstr command with the switches /s /i and /m followed by the text string you are searching for (in quotes) followed by the wildcards *.* which means search in all files.

/s means searches in the current directory and all subdirectories.
/i specifies that the search is not to be case-sensitive.
/m prints only the file name if a file contains a match.

The second line in the batch file is the pause command. This causes the DOS window to display its results until the user presses any key. Without the pause command the DOS window would immediately close.

Find more information about DOS commands at the TechNet Library Command-line reference A-Z


Learn more at amazon.com

More Windows Administration Information:
• Windows Server 2003 Active Directory and Network Infrastructure
• To Protect Your PC Disable the Windows Scripting Host
• Synchronize Your PC's Clock with an Internet Time Server
• How to Audit Security Permissions and Access Rights in Active Directory
• How to Create a Bootable USB Drive
• A Brief Introduction to 3D Printing
• How to Backup Mails and Address Book of Outlook Express
• Disable Automatic Wireless Configuration in Windows 7
• Uncomplicated AD Object Management on a Remote Server Domain
• What Is Virtualization and What Are the Benefits?