How to Make Batch Files [draft]
by thomasgamer4000 in Circuits > Microsoft
542 Views, 0 Favorites, 0 Comments
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!
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.
The Basics QnA
Q:what is "echo"?
A:it writes what is put after it.
Q:what is "pause"?