home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / database / dscar30.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1989-07-23  |  2KB  |  51 lines

  1. echo off
  2. cls
  3. echo d S C A R                                                   V E R S I O N
  4. echo     d S C A R                                           V E R S I O N
  5. echo         d S C A R                                   V E R S I O N
  6. echo             d S C A R                           V E R S I O N
  7. echo                 d S C A R                   V E R S I O N
  8. echo                     d S C A R           V E R S I O N
  9. echo                         d S C A R   V E R S I O N
  10. echo                         -------------------------
  11. echo                             *****       *****
  12. echo                                 *       *   *
  13. echo                              ****       *   *
  14. echo                                 *       *   *
  15. echo                             *****   *   *****
  16. echo.
  17. if /%1==/ goto ERROR
  18. :GO
  19. echo If you are NOT currently logged into the drive you want dSCAR v3.0
  20. echo installed in, hit CTRL-C to abort.  Otherwise, press any key.
  21. pause >nul
  22. echo.
  23. echo Copying DSCAR.EXE from %1 to current drive & directory
  24. copy %1DSCAR.EXE >nul
  25. echo.
  26. echo If you are mainly using Clipper or FoxBase, you may specify which
  27. echo one you are using.
  28. echo.
  29. %1askyn "Are you using Clipper?"
  30. if errorlevel 1 goto FOX
  31. %1use_clip
  32. goto END
  33. :FOX
  34. %1askyn "Are you using FoxBase?"
  35. if errorlevel 1 goto END
  36. %1use_fox
  37. goto END
  38. :ERROR
  39. echo Follow these steps to install dSCAR:
  40. echo.
  41. echo     1) Log into the drive and directory you want dSCAR installed in.
  42. echo     2) Put the original dSCAR disk into the disk drive.
  43. echo     3) Run the install batch file by specifying the drive letter
  44. echo        where dSCAR is located, like this:
  45. echo.
  46. echo                    %0 A:
  47. echo.
  48. echo        In this case we assumed dSCAR was located on drive A:
  49. :END
  50. echo.
  51.