home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 12 / CD_ASCQ_12_0294.iso / vrac / loan105.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1994-01-01  |  2KB  |  70 lines

  1. echo off
  2. cls
  3. if "%1" == "" goto message
  4. if exist LOAN1.EXE goto Start
  5. goto message
  6. :Start
  7. if "%1" == "C:" goto instprog
  8. if "%1" == "c:" goto instprog
  9. if "%1" == "D:" goto instprog
  10. if "%1" == "d:" goto instprog
  11. if "%1" == "E:" goto instprog
  12. if "%1" == "e:" goto instprog
  13. if "%1" == "F:" goto instprog
  14. if "%1" == "f:" goto instprog
  15. if "%1" == "G:" goto instprog
  16. if "%1" == "g:" goto instprog
  17. if "%1" == "H:" goto instprog
  18. if "%1" == "I:" goto instprog
  19. if "%1" == "i:" goto instprog
  20. if "%1" == "J:" goto instprog
  21. if "%1" == "j:" goto instprog
  22. goto message
  23. :INSTPROG
  24. echo . Installing The Loan Accelerator
  25. echo .
  26. echo . Trial Version 1.05
  27. echo .
  28. echo . Checking for %1\LOAN1 sub-directory . . .
  29. if exist %1\LOAN1\nul goto LOAN-DIR-EXIST
  30. echo .
  31. echo . Creating %1\LOAN1 sub-directory . . .
  32. md %1\LOAN1
  33. goto LOAN-COPY-FILES
  34. :LOAN-DIR-EXIST
  35. echo .
  36. echo . %1\LOAN1 directory exists.
  37. :LOAN-COPY-FILES
  38. echo .
  39. copy *.* %1\LOAN1
  40. %1
  41. cd %1\LOAN1
  42. echo .
  43. echo . The Loan Accelerator Trial Version 1.05
  44. echo . Installation Complete
  45. echo .
  46. echo . Type LOAN1 and press [Enter] to start your program.
  47. echo .
  48. echo . To install in Windows, follow instructions in the Readme.txt file.
  49. echo . To print the Readme.txt file, type:
  50. echo .
  51. echo .........COPY README.TXT PRN  [Enter]
  52. goto end
  53. :message
  54. cls
  55. echo * * * * * * * * * * * * * * * * * * * * * * *
  56. echo .
  57. echo . To operate the Install Program insert the
  58. echo . program disk and log onto that drive by
  59. echo . typing  A: and then pressing [Enter]
  60. echo . or B: [Enter].
  61. echo .
  62. echo . Then type the following:
  63. echo .
  64. echo . INSTALL C:    [Enter]
  65. echo .         or
  66. echo . INSTALL D:    [Enter]
  67. echo .
  68. echo * * * * * * * * * * * * * * * * * * * * * * *
  69. :end
  70.