home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / d / dartv23.zip / GO-DART.BAT < prev    next >
DOS Batch File  |  1992-08-29  |  2KB  |  69 lines

  1. ECHO OFF
  2. CLS
  3. REM  GO-DART.BAT  Copyright (c)  1989,1991  Ted Husted
  4. REM  Please! Do NOT alter this file!
  5. BREAK ON
  6. ECHO Hello. These files need to be on your distribution disk:
  7. ECHO ────────────────────────────────────────────────────────
  8. ECHO   go-dart.BAT   .. This batch file.
  9. ECHO   ────────────
  10. ECHO   dart.TXT      .. A plain-text program description.
  11. ECHO   ────────────
  12. ECHO   dart.EXE      .. The program file.
  13. ECHO   dart.RCS      .. A necessary utility file.
  14. ECHO   ────────────
  15. ECHO   dart.#01      .. Users guide.
  16. ECHO   ────────────
  17. ECHO   dart.##R      .. Dart registration form.
  18. ECHO ────────────────────────────────────────────────────────
  19. ECHO ·
  20. ECHO If any of these appear missing, they will be listed
  21. ECHO after you strike a key.
  22. ECHO ·
  23. ECHO Notice: If you are not "logged on" to the distribution
  24. ECHO ------  disk, the following list may not be accurate.
  25. ECHO ·
  26. PAUSE
  27. CLS
  28. FOR %%a IN (GO-DART.BAT) DO IF NOT EXIST %%a ECHO %%a is not found.
  29. ECHO ·
  30. FOR %%a IN (DART.EXE DART.RCS)  DO IF NOT EXIST %%a ECHO %%a is not found.
  31. ECHO ·
  32. FOR %%a IN (DART.#01 DART.##R) DO IF NOT EXIST %%a ECHO %%a is not found.
  33. ECHO ·
  34. ECHO Done with all files.
  35. ECHO ·
  36. ECHO If any files were "not found", check for them on your
  37. ECHO distribution disk and/or contact your distributor.
  38. ECHO ·
  39. ECHO (There will also be other files on your disk as well. A description
  40. ECHO  of every file on the disk is in the -DART-.DIR text file.)
  41. ECHO ·
  42. ECHO Press "(Ctrl)(C)" to quit now or
  43. PAUSE
  44. CLS
  45. IF EXIST SHOW.EXE SHOW DART.TXT
  46. CLS
  47. ECHO ·
  48. ECHO        We will now try to load Dart. We hope you like it.
  49. ECHO        We recommend you read the  DART.#01  file first! 
  50. ECHO ·                                  ════════
  51. PAUSE
  52. IF EXIST DART.EXE DART DART.#01
  53. PAUSE
  54. ECHO ·
  55. ECHO If you're going to be redistributing this shareware disk,
  56. ECHO run the  RESET  batch file first.  RESET will delete
  57. ECHO Dart's "bookmark" files.
  58. ECHO ·
  59. PAUSE
  60. ECHO ·
  61. ECHO To use Dart again, just type  DART  at your dos prompt.
  62. ECHO Do not run the Go or Go-Dart batch file each time.
  63. ECHO ·
  64. ECHO You will now be given a chance to print the registration form.
  65. ECHO ·
  66. PAUSE
  67. IF EXIST DART-REG.BAT DART-REG
  68. 
  69.