LEARN BATCH PROGRAMMING FOR FUN!
Step 1:
So, what is Batch
For those who don't know, a Batch file is a text file containing a series of commands to be executed by Command Prompt (CMD). When a batch file is run, CMD reads the file and executes its commands.
To open your CMD, click START > RUN > type "CMD" > OK
(some of you may need to type "CMD.EXE")
(or you can click START > ALL PROGRAMS > ACCESSORIES > COMMAND PROMPT).
Step 2:
To open your CMD, click START > RUN > type "CMD" > OK
(some of you may need to type "CMD.EXE")
(or you can click START > ALL PROGRAMS > ACCESSORIES > COMMAND PROMPT).
Step 2:
These are some VERY basic commands you need to know:
(please try out some of these commands in your CMD).
@echo off - This gets rid of that "c:\documents...etc"
echo - This displays a message, (e.g "echo hello" = "hello") because if you type "hello" into CMD it will interpret "hello" as the command
cls - Clears the CMD of all text.
color - Changes the color (type "help color" for a list of colors).
goto - Goes to a particular word in your text (you will learn more later)
pause - Pauses the command prompt and displays the message: "Press any key to continue..."
More Lessons comming soon...
(please try out some of these commands in your CMD).
@echo off - This gets rid of that "c:\documents...etc"
echo - This displays a message, (e.g "echo hello" = "hello") because if you type "hello" into CMD it will interpret "hello" as the command
cls - Clears the CMD of all text.
color - Changes the color (type "help color" for a list of colors).
goto - Goes to a particular word in your text (you will learn more later)
pause - Pauses the command prompt and displays the message: "Press any key to continue..."
More Lessons comming soon...