Computer Science, asked by shivamdixit3411, 11 months ago

Write the process of creating a Batch File.

Answers

Answered by abhay4445
0

Open a text file, such as a Notepad or WordPad document

Add your commands, starting with @echo [off], followed by — each in a new line — title [title of your batch script], echo [first line], and pause.

Save your file with the file extension .bat, for example, test.bat.

To run your batch file, double click the BAT file you just created.

To edit your batch file, right-click the BAT file and select Edit.

Hope this helps you.
Plz mark it as the brainliest.

Answered by theking20
0

The process of creating a Batch File is as follows:

                     Batch files are crucial when running multiple jobs in a given sequence. This is generally done through a singular batch file where all the instructions are written. To create a batch file, we need to follow the steps mentioned below:

• Open a notepad (text file).

• Add specific commands to run the desired jobs, preferably of a specific language.

• 'Save as' the file giving extension '.bat'. Now the batch file is created.

• When needed, run the batch file by double clicking on it.

Similar questions