Creating a Simple Batch File

Written by Barry Dysert (last updated October 18, 2021)

Windows batch files are great if you want to perform several tasks in quick succession, or if you want to do things to several files in a row, or if you simply don't want to use the GUI interface to perform some tasks (e.g., performing unattended tasks). Batch files are text files with a ".bat" extension and contain Windows' command-line statements. Of course, you need to know the command-line statements in order to enter them into a .bat file. There are many places on the Web that describe the available command-line statements, but one place is the following:

http://technet.microsoft.com/en-us/library/cc754340.aspx#BKMK_Index

There are various ways to create a batch file, but since a batch file is nothing but a plain text file, perhaps the simplest way is to use Notepad. Since I use batch files a lot, I created a C:\Bat folder where I keep them all. To create a new one I use Windows Explorer or File Explorer to navigate to C:\Bat, then I right-click in that folder and select New | Text Document. (See Figure 1.)

Figure 1. Creating a new text document.

Immediately after selecting the Text Document menu item, type the name you want to give to your batch file (say you want it to be called "Directory") and press Enter. Now, pressing Enter a second time will launch Notepad, and you can begin typing in the command-line statements that constitute your batch file.

For example, say you wanted to create a batch file that produces a directory listing of a folder, and puts that listing into a file named "Dirlist.txt". The command-line statement that produces a directory listing is DIR, and to direct DIR's output to a file you use the ">" operator. So the line you type into Notepad would be:

DIR > Dirlist.txt

Command-line statements are not case sensitive, so you don't need to type DIR in uppercase if you don't want to. After you've typed this into Notepad, save the file and exit. The last thing to do before actually invoking your batch file is to rename it to have a ".bat" extension instead of the default ".txt" extension. Here again, under Windows Explorer or File Explorer, right-click the file you just created ("Directory.txt") and select Rename from the Context menu. Use the right-arrow key to move over to the ".txt" portion of the file name and replace ".txt" with ".bat" and then press Enter. (Windows will ask you if you're sure you want to rename the file. Click Yes.) You should now have a file named "Directory.bat" in your folder.

One way to invoke a batch file is to double-click on it, so to actually execute your DIR command, double-click the "Directory.bat" file. Immediately, a window will briefly appear and disappear, and you'll now see a file named "Dirlist.txt" in your folder. This file was created by the commands in the batch file. By opening that file you'll see a directory listing of your C:\Bat folder.

Obviously, having a batch file that produces a directory listing of your C:\Bat folder is of limited value, but this tip was meant to give you an introduction to creating and invoking a simple batch file. But the batch processing capabilities are very powerful. See other tips to get a feel for using slightly more sophisticated batch files.

 This tip (13100) applies to Windows 7, 8, and 10.

Author Bio

Barry Dysert

Barry has been a computer professional for over 35 years, working in different positions such as technical team leader, project manager, and software developer. He is currently a software engineer with an emphasis on developing custom applications under Microsoft Windows. When not working with Windows or writing Tips, Barry is an amateur writer. His first non-fiction book is titled "A Chronological Commentary of Revelation." ...

MORE FROM BARRY

Deleting a Library

Deleting a library can be done with a couple of mouse clicks. And even though you delete the library, the folders and ...

Discover More

Backing Up Your Files

Performing regular backups of your system offers you peace of mind because you don't have to worry about data loss in the ...

Discover More

Modifying Your Hosts File

Your Hosts file is an important file as far as network communications go, and you can easily edit it to suit your needs. ...

Discover More
More WindowsTips

Running a Batch File at a Scheduled Time

Once you become comfortable with batch files, chances are that you'll want to use them to perform various system ...

Discover More

Using the SHIFT Statement

Sometimes your batch file needs to accept an unknown number of parameters. This is easy to deal with if you know about ...

Discover More

Using the FOR Statement

In another tip we were introduced to the various FOR loops that exist in Windows. The actual use of these loops was left ...

Discover More
Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is two less than 9?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


Newest Tips