home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo This command file will copy all files from the First Expedition
- echo floppy to the hard drive. To use it properly, you have defined
- echo a directory on your hard drive to store the game. You have used
- echo the DOS Change Directory (CD) command to make that directory
- echo the current directory on the hard drive. You have then
- echo entered the following from the DOS prompt:
- echo.
- echo a:INSTALL a x
- echo.
- echo where the 'a' is the drive the floppy is in. Make it a B if
- echo you are using drive B. The 'x' is the letter of the hard drive
- echo you want to copy the files to. You do not specify a path since
- echo the files will go to the current directory set for that
- echo drive and you have put yourself in that subdirectory per the
- echo above instructions.
- echo.
- echo Now.... if everything is okay, press any key...
- echo Otherwise, press Ctrl-C to exit.
- echo.
- pause
- echo.
- echo.
- if "%1"=="" goto baddrive
- if "%2"=="" goto baddrive
- copy %1:\ex1\*.* %2:
- cls
- echo Copying complete for this floppy.
- echo.
- goto end
- :baddrive
- cls
- echo.
- echo I thought we had an agreement. You enter
- echo.
- echo a:INSTALL a x
- echo.
- echo with 'a' being the 'from' floppy drive and 'x' being the letter
- echo of the hard drive to copy the files to and I would copy all the
- echo files for you....
- echo But no! You had to go and do something else....
- echo.
- :end
-