ill have a look for my script later, bit busy in work
i made about 10 revisions, so i think i'm looking for 'backup mk10a.bat' lol
http://www.ss64.com/nt/robocopy.html
here's a good place to find info, and here's a good link with a GUI for it
http://technet.microsoft.com/en-us/magazine/cc160891.aspx
personally i don't use that much of it, but the GUI is good for starting off
echo displays whatever is after it, so
if you had your file like this..
@Echo off
title Mark's Backup
echo Starting backup....
robocopy etc..
title Backup complete
pause
that would give it a title screen and print on screen Starting backup..., then would prompt you with a pause after it
if you type (in cmd)
robocopy /? it'll tell you the instructions for using it (all commandline tools work like that)
you can do things like add in "color c0", would make the window Red with black font, then you could put in another color (do color /? to find out what they are) at the end with green window & white font..