home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / comm / k9x.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1989-01-17  |  3KB  |  92 lines

  1. echo off
  2. cls
  3. echo *************************************************************
  4. echo *  Canine Express  Installation Batch File for  K9X  v8.30  *
  5. echo *  Copyright 1989 Crater Rim Software. All rights reserved  *
  6. echo *     - - - - - - - - - - - - - - - - - - - - - - - - -     *
  7. echo * This batch file will create the required directories  and *
  8. echo * subdirectories used by K9X and Move all of the files into *
  9. echo * their respective areas. Do you wish to install  K9X  now? *
  10. echo *************************************************************
  11. waitkey "yn","Press Y for Yes  or  N for No ",0
  12. if errorlevel 2 goto done
  13. echo . Ok!
  14. md \K9X
  15. md \K9X\SUPP
  16. md \K9X\LOGS
  17. move K9X.PRE \K9X\SUPP
  18. move MININET.K9X \K9X\SUPP
  19. move PCBOARD.K9X \K9X\SUPP
  20. move PCP.K9X \K9X\SUPP
  21. move RBBS.K9X \K9X\SUPP
  22. move CALL.LOG \K9X\LOGS
  23. move K9X.COM \K9X
  24. move K9X.0* \K9X
  25. move K9XCNF.* \K9X
  26. move JBA.COM \K9X
  27. move KTREE.COM \K9X
  28. move CIS.EXE \K9X
  29. move PCKERMIT.EXE \K9X
  30. move KERMIT.BAT \K9X
  31. move K9XSUPP.DOC \K9X
  32. move LICENSE.K9X \K9X
  33. move MAILER.K9X \K9X
  34. move CIS.TXT \K9X
  35. move WHATS.NEW \K9X
  36. copy WAITKEY.EXE \K9X >nul
  37. cls
  38. echo *************************************************************
  39. echo * There are 2 pre-made  K9X  configuration files available. *
  40. echo * You may select one of them or configure K9X from scratch. *
  41. echo *    A - Configure K9X from scratch                         *
  42. echo *    B - Color card and B&W Monitor                         *
  43. echo *    C - Color Card and Color Monitor                       *
  44. echo * Which configuration whould you like? (A/B/C)              *
  45. echo *************************************************************
  46. Waitkey "abc","Press A, B  or  C  please ",0
  47. echo . Ok!
  48. if errorlevel 3 goto color
  49. if errorlevel 2 goto bw
  50. del COLOR.CNF
  51. del B&W.CNF
  52. goto scratch
  53. :color
  54. ren COLOR.CNF K9X.CNF
  55. del B&W.CNF
  56. goto gotit
  57. :bw
  58. ren B&W.CNF K9X.CNF
  59. del COLOR.CNF
  60. :gotit
  61. move K9X.CNF \K9X\SUPP
  62. :scratch
  63. cd\K9X
  64. cls
  65. echo **************************************************************
  66. echo * The drive table consists of all directories/subdirectories *
  67. echo * on your system beginning with drive letter C   Do you wish *
  68. echo * to create the K9X File Find Drive Table Now?               *
  69. echo **************************************************************
  70. waitkey "yn","Press Y for Yes  or  N for No ",0
  71. echo . Ok!
  72. if errorlevel 2 goto next
  73. KTREE
  74. :next
  75. K9XCNF
  76. del waitkey.exe
  77. cls
  78. echo ************************************************************
  79. echo * Be sure to DELete  MOVE.COM, WAITKEY.EXE and INSTALL.BAT *
  80. echo * from your Installation starting point  and take a minute *
  81. echo * to read the licensing agreement and documentation!       *
  82. echo *    - - - - - - - - - - - - - - - - - - - - - - - - -     *
  83. echo * Thankyou for taking the time to evaluate  K9X!  We think *
  84. echo * it is by far, the  BEST  comm package available to date! *
  85. echo * If you find K9X useful, please show your support for our *
  86. echo * work by registering this copy! Thanks again...           *
  87. echo *                                                          *
  88. echo *      Keep the Faith and... Enjoy!                        *
  89. echo *                         Sal Manaro                       *
  90. echo ************************************************************
  91. :done
  92.