home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 17 / CD_ASCQ_17_101194.iso / vrac / besth152.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1994-08-01  |  733b  |  28 lines

  1. @ECHO OFF
  2. ECHO Example: INSTALL C
  3. IF "%1" == ""  GOTO NO
  4. GOTO DOIT
  5. :NO
  6. ECHO  Missing parameter  - Drive parameter required
  7. ECHO Example: INSTALL C
  8. ECHO You can choose only among A, B or C (or the host drive of C if
  9. ECHO DOUBLE-SPACED).
  10. GOTO END
  11. :DOIT
  12. IF EXIST BESTHES.COM GOTO SI
  13. ECHO Change current drive and directory to those in which BESTHES' files
  14. ECHO are located.
  15. GOTO END
  16. :SI
  17. ECHO Making subdirectory \BESTHES in drive %1:
  18. MD %1:\BESTHES
  19. ECHO Copying BESTHES' files onto %1:\BESTHES
  20. COPY OMBUDSMA.TXT %1:\BESTHES
  21. COPY BESTHES.DOC  %1:\BESTHES
  22. COPY REGISTER.DOC %1:\BESTHES
  23. COPY INSTALL.DOC  %1:\BESTHES
  24. COPY BESTHES.DIC  %1:\BESTHES
  25. COPY BESTHES.CDF  %1:\BESTHES
  26. COPY BESTHES.COM  %1:\BESTHES
  27. :END
  28.