home *** CD-ROM | disk | FTP | other *** search
/ Share Gallery 1 / share_gal_1.zip / share_gal_1 / WP / WP003.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1988-09-27  |  1KB  |  55 lines

  1. echo off
  2. echo *
  3. echo *
  4. echo EZX-WRITE Version 2.3 Installation Program
  5. echo *
  6. echo *
  7. if %1.==. goto usage
  8. goto copyfiles
  9. :usage
  10. echo Usage:  INSTALL [destination]
  11. echo *
  12. echo where [destination] is the drive and/or directory you wish to use for
  13. echo your EZX-WRITE program files.  INSTALL will copy all the EZX-WRITE files to
  14. echo [destination].
  15. echo *
  16. echo Example:  INSTALL C:\EZXWRITE
  17. echo will copy all the EZX-WRITE program files to the C:\EZXWRITE subdirectory.
  18. echo * The "EZXWRITE" subdirectory must exist. eg. MD C:\EZXWRITE (enter)
  19. echo *
  20. echo If your computer only has one disk drive, type INSTALL B:, and follow
  21. echo the prompts to do a single drive copy.  You will be prompted to insert
  22. echo a destination diskette into drive A:, then the program diskette, etc.
  23. echo until all the files are copied.
  24. goto error
  25. :copyfiles
  26. echo 
  27. echo About to copy EZX-WRITE program files to %1
  28. echo 
  29. echo If this is not OK, press Ctrl-Break, otherwise,
  30. pause
  31. echo 
  32. echo Copying files, please wait...
  33. echo 
  34. echo Copying printer drivers
  35. copy *.PRD %1
  36. echo 
  37. echo Copying print driver utility
  38. copy MAKEPRD.* %1
  39. echo 
  40. echo Copying EZX-WRITE program files and documentation
  41. copy EZXW.* %1
  42. rem  copy *.doc %1
  43. echo 
  44. echo Copying WHATSNEW.DOC file
  45. copy WHATSNEW.DOC %1
  46. echo 
  47. echo Copying README.DOC file
  48. copy README.DOC %1
  49. echo 
  50. echo Program files copied to %1
  51. echo 
  52. echo To start the program from %1, just type EZXW and press [Enter].
  53. :error
  54.  
  55.