Writing A Windows Batch Script
Writing A Windows Batch Script
script
In Windows, the batch file is a file that stores commands in a serial
order. The command line interpreter takes the file as an input and
executes in the same order. A batch file is simply a text file saved with
the .bat file extension. It can be written using Notepad or any other
text editor.
A simple batch file will be.
// When echo is turned off, the command prompt doesn't appear in the
Command Prompt window.
ECHO OFF