Friday, 22 March 2013

What is a batch file?

A batch file is a file that will run from cmd and can do various things.
Here is an example code:

(at)echo off
cls
echo Hi!
pause

will come out like this:
Hi!
Press any key to continue...

No comments:

Post a Comment