http://www.youtube.com/Dunnecomputers
in this video, you will learn how to make a simple message that is displayed in cmd. It is called a batch (.bat) file, there are many different things that you can do with cmd and batch files. This is just a very basic example, I will get to more complicated stuff later.
-----------------------------------------------------------------------
one of the basic codes you can use:
@echo off
echo "message here"
pause
cls
echo "other message here"
pause
cls
------------------------------------------------
you can keep going on forever.
------------------------------------------------
cls: clear screen
pause:pauses the cmd screen after each message until you click any button
echo: allows you to display your message
Link to this comment:
All Comments (0)