home *** CD-ROM | disk | FTP | other *** search
/ Aztec Shareware Collection / ARCADE_1.ISO / aquarium / install.bat < prev    next >
DOS Batch File  |  1992-03-26  |  2KB  |  65 lines

  1. echo off
  2. cls
  3. echo              AQUARIUM (c)  1991, 1992  Installation
  4. echo.
  5. echo.
  6. if "%1" == "" goto NoPath
  7. echo Ready to install on your '%1' hard disk.
  8. echo Note:INSTALL will create the directory \AQUARIUM on your hard disk.
  9. echo.
  10. echo Press Ctrl + C keys to abort.
  11. echo.
  12. pause
  13. echo.
  14. echo Attempting to create \AQUARIUM directory on your hard disk.  If this
  15. echo directory already exists, DOS will issue an error message, but you
  16. echo can ignore the message.
  17. echo.
  18. md %1\AQUARIUM
  19. copy aqua.* %1\AQUARIUM
  20. echo.
  21. copy *.DOC %1\AQUARIUM
  22. copy view.com %1\AQUARIUM
  23. echo.
  24. echo Installation of the AQUARIUM files is complete!
  25. echo Remove your AQUARIUM floppy and store in a safe place.
  26. echo.
  27. echo To run AQUARIUM from your %1 hard disk:
  28. echo Logon to your %1 drive                 by typing  %1
  29. echo Change directory to \AQUARIUM          by typing  CD \AQUARIUM
  30. echo Start the Aquarium program             by typing  AQUA
  31. echo.
  32. echo View the README.DOC file included on your AQUARIUM floppy by
  33. echo using the VIEW program included as follows:
  34. echo.
  35. echo Logon to the A: floppy drive first.
  36. echo.
  37. echo                    "A:"                    (press enter key)
  38. echo.
  39. echo Then type          "VIEW README.DOC"       (press enter key)
  40. echo.
  41. echo.
  42. echo The README.DOC is a text file and may also be read by any Word
  43. echo Processing program.
  44. echo.
  45. echo Regards Ron, Chris & Kim
  46. echo.
  47. goto end
  48. :NoPath
  49. echo.
  50. echo        Insert the AQUARIUM diskette in drive A: and close the door.
  51. echo        Next, log onto drive A: by typing 'A:' followed by ENTER key.
  52. echo        Now start the Install procedure by typing    INSTALL drive:
  53. echo.
  54. echo        Syntax:   INSTALL drive:
  55. echo.
  56. echo        Where 'drive:' is the drive letter of the hard disk drive
  57. echo        where you wish to install this program, such as  C: or D:
  58. echo.
  59. echo        Example:  INSTALL C:
  60. echo.
  61. echo        This would install the AQUARIUM files on your C: drive.
  62. echo.
  63. :end
  64.  
  65.