How to Make Batch Files [draft]

by thomasgamer4000 in Circuits > Microsoft

542 Views, 0 Favorites, 0 Comments

How to Make Batch Files [draft]

Telnet Connector_ no telnet selected 10_3_2017 12_27_34 PM.png

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

The Basics

Untitled - Notepad 10_3_2017 12_51_39 PM.png

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

QnA logo.png

Q:what is "echo"?

A:it writes what is put after it.

Q:what is "pause"?