Introduction: How to Make Batch Files [draft]

About: applications: telnet connector: https://drive.google.com/open?id=0B-k8hK57xOT1ei1nTnlxb2ZpVGc

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"?