home *** CD-ROM | disk | FTP | other *** search
/ Shareware Gold 1 / The_Golden_ROM_Series_-_Shareware_Gold_Volume_1_Number_11_-_SK_89-301_-_1989.iso / LIB004 / GO2.BAT next >
DOS Batch File  |  1988-10-17  |  4KB  |  133 lines

  1. ECHO OFF
  2. CLS
  3. ECHO             Disk Two of the two disk Installation Program.
  4. ECHO         This disk should be second, preceded by 'GO'on first disk.
  5. PAUSE
  6. ECHO          [Ignore all 'Syntax Error' messages at this screen, if any]
  7. IF %1==F GOTO FLOPINS
  8. IF %1==f GOTO FLOPINS
  9. IF %1==H GOTO HARDINS
  10. IF %1==h GOTO HARDINS
  11. CLS
  12. :FEATURES
  13. CLS
  14. ECHO                INSTRUCTIONS FOR INSTALLING SERVICE PLUS [TM]
  15. ECHO                       Everything contained in two disks:
  16. ECHO                              -
  17. ECHO            To install this from a 2 floppy drive system,
  18. ECHO                     enter 'GO2 F 1' from drive B:.
  19. ECHO                       if using 360KB floppy drives
  20. ECHO         [your floppy drives each have a capacity of 360,000 characters]
  21. ECHO                             or
  22. ECHO                     enter 'GO2 F 2' from drive B:.
  23. ECHO                       if using floppy drives GREATER than 360KB 
  24. ECHO                              -
  25. ECHO For any hard drive, enter 'GO2 H', followed by the letter of your drive.
  26. ECHO If your hard drive is C, enter 'GO2 H C'.
  27. ECHO If you are installing onto a network drive I, enter 'GO2 H I'
  28. ECHO You must have a drive designator following 'H'.
  29. ECHO -
  30. ECHO Also, one space follows 'GO2' and another space follows 'H'.
  31. ECHO [do not enter 'GO2 H C:', only 'GO2 H C'  {no colons following the drive}]
  32. PAUSE
  33. GOTO END
  34. :FLOPINS
  35. ECHO OFF
  36. CLS
  37. ECHO                INSTRUCTIONS FOR INSTALLING SERVICE PLUS [TM]
  38. ECHO         Create three ready-to-run disks (execute from drive B:)
  39. ECHO  Label three disks as follows:
  40. ECHO            Disk 1:  MAINT-A   {--- This is the 'HELP' disk
  41. ECHO            Disk 2:  MAINT-B   {--- This is the 'PROGRAM' disk.
  42. ECHO                                    Contains SERVICE.EXE 
  43. ECHO            Disk 3:  SERVICE.DOC  {--- This is the Tutorial 
  44. ECHO                                   -
  45. PAUSE   
  46. CLS
  47. IF %2==1 GOTO FLOPINS1
  48. IF %2==2 GOTO FLOPINS2
  49. CLS
  50. ECHO  This floppy installation requires that you enter either a '1' or a '2',
  51. ECHO  following your 'GO F' instruction.
  52. GOTO END
  53. :FLOPINS2
  54. CLS   
  55. ECHO  Enter disk 2, MAINT-B, into drive A now.
  56. ECHO  [it should still be in Drive A]
  57. PAUSE
  58. A:
  59. B:PKXARC -R B:MAINTC26.ARC ACS2OV.OVL
  60. CLS
  61. ECHO  Enter disk 1, MAINT-A, BACK into drive A again.
  62. PAUSE 
  63. A:     
  64. B:PKXARC -R B:MAINTC26 ACS2DRVA.OVL
  65. CLS
  66. ECHO  Enter disk 3, SERVICE.DOC, into drive A now.
  67. PAUSE 
  68. A:     
  69. B:PKXARC -R B:MAINTD26.ARC SERVICE.DOC
  70. GOTO FLOPDOC
  71. :FLOPDOC
  72. CLS 
  73. ECHO  Finished !
  74. ECHO  Disk  3,  the 65 page documentation and tutorial,  is not used while 
  75. ECHO  the program  is  running.   It  contains a tutorial/reference file
  76. ECHO  and can be printed out will this command:          
  77. ECHO                           COPY SERVICE.DOC LPT1:  
  78. ECHO                                   -  
  79. ECHO  To start the program,:
  80. ECHO  Enter MAINT-A, disk one, into drive A.
  81. ECHO  Enter MAINT-B, disk two, into drive B.
  82. ECHO  -
  83. ECHO  Then restart the computer and execute SERVICE  {executed from B}
  84. GOTO END
  85. :FLOPINS1
  86. CLS   
  87. ECHO  Enter disk 2, MAINT-B, into drive A now.
  88. ECHO  [it should still be in Drive A]
  89. PAUSE
  90. A:
  91. B:PKXARC -R B:MAINTC26.ARC ACS2OV.OVL
  92. CLS
  93. ECHO  Enter disk 1, MAINT-A, BACK into drive A again.
  94. PAUSE 
  95. A:     
  96. B:PKXARC -R B:MAINTC26 ACS2DRVA.OVL
  97. CLS
  98. ECHO  Enter disk 3, SERVICE.DOC, into drive A now.
  99. PAUSE 
  100. A:     
  101. B:PKXARC -R B:MAINTD26.ARC SERVICE.DOC
  102. GOTO FLOPDOC
  103. :HARDINS
  104. ECHO OFF
  105. CLS
  106. ECHO                INSTRUCTIONS FOR INSTALLING SERVICE PLUS [TM]
  107. ECHO                       Hard drive install option:
  108. ECHO                                   -
  109. ECHO  This procedure will install all files onto your hard disk, drive %2
  110. ECHO  It will create a subdirectory, \SERVICE, and split out or unarchive
  111. ECHO  all the files it needs from this single disk on drive A.
  112. PAUSE
  113. CLS
  114. %2:
  115. CD \
  116. CD SERVICE
  117. COPY A:MAINTC26.ARC
  118. PKXARC -R MAINTC26.ARC
  119. DEL MAINTC26.ARC
  120. COPY A:MAINTD26.ARC
  121. PKXARC -R MAINTD26.ARC
  122. DEL MAINTD26.ARC
  123. COPY A:USER.TXT
  124. CLS
  125. ECHO  SERVICE.DOC is the documentation and tutorial. It  contains a 65 page
  126. ECHO  tutorial/reference book and  can  be  printed  out with this command: 
  127. ECHO                         COPY SERVICE.DOC LPT1:
  128. ECHO                                   -  
  129. ECHO           SERVICE  {==== this will execute the main program
  130. GOTO END
  131. :END
  132. ECHO                                   -
  133.