Creating Batch File
Creating Batch File
You might be aware of the Windows command line interpreter known as CMD or Command
Prompt. It takes various commands as input through the keyboard and processes them.
Being a Windows user, most of us aren�t much comfortable with anything that doesn�t
look good, and CMD is one of them.
A batch file does the work of a mediator between you and the command prompt. It is
a file � with .bat, .cmd, .btm file extensions � containing the CMD commands. When
you run a batch file, the commands written in it are executed in the Command Prompt
following a serial fashion. Otherwise, these would have to be entered manually,
line by line. The set of commands is also known as a batch script.
If you have created a batch file for the shutdown operation, you�ll only have to
double-click to run it, like you usually open applications, and your Windows will
shut down after the time you have already set.
If a developer wants to use the command prompt on your machine while installing
software, he can do so by including a batch file in the setup files. Otherwise, you
would have to run the commands which I guess won�t make you happy. In a nutshell,
it is a script file used to automate tasks in DOS, Windows, and OS/2 operating
systems.
While creating a batch file, you can also enable loops (for), conditional
statements (if), control statements (goto), etc. You can run a batch file directly
from the command prompt by typing its name. Also, you can run one batch file from
another batch file using the CALL command.
This is called interactive mode where input from the user is required. The other
mode is called batch mode where a bat file keeps doing its work without disturbing
the user.
title: It�s used to change the title text displayed on top of CMD window.
echo � Displays the input string as the output. Use ON or OFF option for ECHO to
turn the echoing feature on or off. If you turn on the ECHO, the CMD will display
the command it is executing.
So, these were what we can call internal commands which are shipped with Windows.
Your batch script can also support external commands. These are ones added when a
new software is installed on your system. For example, if you have Google Chrome
installed on your machine, you can use the command �chrome� in the CMD window.
This tutorial will apply for computers, laptops, desktops,and tablets running the
Windows 10, Windows 8/8.1, Windows 7 operating systems.Works for all major computer
manufactures (Dell, HP, Acer, Asus, Toshiba, Lenovo, Samsung).