How to Make Batch Files [draft]

43901

Intro: How to Make Batch Files [draft]

if you want to know how to make batch files(assuming you know to save them)? then this tutorial is for you!

STEP 1: The Basics

lets make a simple batch script.

copy and caste this:

echo hi

pause

this makes it write "hi", then it writes "press any key to continue..." on the next line. it also waits for user input via the keyboard (not moving the mouse, if the mouse is a flat surface on the keyboard you only need one finger to use, which i have.).when it reaches the end, it closes out.


STEP 2: The Basics QnA

Q:what is "echo"?

A:it writes what is put after it.

Q:what is "pause"?

Comments

Thanks for sharing :)