home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / m / mlist152.zip / CF.BAT next >
DOS Batch File  |  1993-02-06  |  2KB  |  52 lines

  1. @ECHO OFF
  2. IF NOT EXIST ML_PKG.EXE GOTO NOFILE
  3. ECHO:
  4. ECHO      This installation routine will create an \ML subdirectory
  5. IF /%1==/ GOTO DEFAULT
  6. ECHO      on drive %1 and copy all files into that area.
  7. GOTO CONT
  8. :NOFILE
  9. ECHO:
  10. ECHO  There is a file missing from the package: ML_PKG.EXE
  11. ECHO:
  12. ECHO  Installation cannot be done.  Please Contact PCS at
  13. ECHO  PO Box 7638, Metairie, LA 70010; BBS: 504-835-0085
  14. ECHO:
  15. ECHO  to obtain the latest and complete version of Master*List.
  16. ECHO:
  17. GOTO END
  18. :DEFAULT
  19. ECHO      on the DEFAULT drive and copy all files into that area.
  20. :CONT
  21. ECHO:
  22. ECHO      If you wish to install Master*List on another drive, use
  23. ECHO      the format:  INSTALL d:   where d: corresponds to the drive
  24. ECHO      you to which you wish to copy the Master*List files.
  25. ECHO:
  26. ECHO:
  27. ECHO Press CTRL-BREAK to abort or
  28. PAUSE
  29. MD %1\ML
  30. IF EXIST CONFIG.DAT COPY CONFIG.DAT %1\ML
  31. COPY *.DOC %1\ML
  32. ML_PKG.EXE %1\ML
  33. %1
  34. CD %1\ML
  35. CLS
  36. ECHO ------------------------------------------------------------------------
  37. ECHO:
  38. ECHO                        Installation is complete!
  39. ECHO:
  40. ECHO     To start Master*List, from DOS type: %1
  41. ECHO                                          CD\ML
  42. ECHO                                          ML
  43. ECHO:
  44. ECHO ------------------------------------------------------------------------
  45. ECHO:
  46. ECHO  NOTE:   Please make sure you have the following line in your
  47. ECHO          CONFIG.SYS file:      FILES=30   (or higher)
  48. ECHO:
  49. ECHO     Master*List may not run properly without adequate FILES defined.
  50. ECHO ------------------------------------------------------------------------
  51. ECHO:
  52. :END