home *** CD-ROM | disk | FTP | other *** search
/ The Education Master 1994 (4th Edition) / EDUCATIONS_MASTER_4TH_EDITION.bin / files / religion / biblett / install.bat < prev    next >
DOS Batch File  |  1993-03-29  |  1KB  |  34 lines

  1. echo off
  2. cls
  3. FOR %%I in (A: a: B: b: C: c: D: d: E: e: F: f: G: g: H: h: I: i: J: j: K: k:) do If "%%I" == "%1" goto goodparm
  4. goto help
  5. :goodparm
  6. echo This program will copy the BIBLETTE distribution diskette
  7. echo files to the hard drive listed in the command line.
  8. echo ┌──────────────────────────────────────────────────────┐
  9. echo │  You are about to install BIBLETTE  on %1\BIBLETTE   │
  10. echo └──────────────────────────────────────────────────────┘
  11. echo If this is NOT what you want to do, please press Control-C at the
  12. echo pause and re-enter it. Otherwise, press any key....
  13. pause
  14. echo Installing BIBLETTE . . .
  15. md %1\BIBLETTE
  16. echo copying Bib-ette.exe to %1\BIBLETTE
  17. copy BIB-ETTE.EXE %1\BIBLETTE /v
  18. echo 
  19. %1
  20. cd \BIBLETTE
  21. BIB-ETTE
  22. DEL BIB-ETTE.EXE
  23. goto exit
  24. :help
  25. echo Sorry, you must specify a drive on the command line to configure
  26. echo BIBLETTE correctly. For instance, the following command:
  27. echo ┌────────────────────────────┐
  28. echo │        INSTALL C:          │
  29. echo └────────────────────────────┘
  30. echo will copy the files to a directory called \BIBLETTE on drive C:. And
  31. echo and configure BIBLETTE to run from the directory C:\BIBLETTE
  32. :exit
  33.  
  34.