home *** CD-ROM | disk | FTP | other *** search
- echo off
- echo I am going to create a directory named c:\daygold
- echo Press any key to continue or CTRL C to stop.
- pause (Hold the Control key and press the "C" key).
- md c:\daygold
- echo Now I am going to copy files to that directory.
- Pause Press any key to continue or CTRL C to stop.
- copy *.* c:\daygold
- echo You are now ready to run the program.
- echo Change to the \windows subdirectory and
- echo start Windows with the following command:
- echo win c:\daygold\daygold.tbk
- echo If you get a file not found message see the readme file.
-