home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0010 - 0019 / ibm0010-0019 / ibm0010.tar / ibm0010 / SOL325B1.ZIP / SETUP.BAT < prev   
Encoding:
DOS Batch File  |  1990-07-24  |  4.8 KB  |  152 lines

  1. echo off
  2. cls
  3.  
  4. REM  Check for setup.325.
  5.      IF NOT EXIST SETUP.325 GOTO ERROR
  6.  
  7. REM  Check to see if INSTALL.* already exists on drive C:.
  8.      IF NOT EXIST C:\INSTALL.* GOTO CONTINUE
  9.  
  10. cls
  11. echo.
  12. echo.
  13. echo     An INSTALL program already exists on your C: hard drive
  14. echo     root directory.  You must remove or rename it first.
  15. echo.
  16. echo     Type  SETUP  again after removing INSTALL file.
  17. echo.
  18. echo     Call Sound Solutions if more information is needed
  19. echo     (617) 438-7686...
  20. echo.
  21.  
  22. GOTO END
  23.  
  24. :CONTINUE
  25.  
  26. REM   Set program to see data on floppy drives A or B.
  27.       SET SSDSK=
  28.       SET SSIGN=C:D:E:
  29.  
  30. cls
  31. echo.
  32. echo                                  Welcome to
  33. echo                        ******************************
  34. echo                        ***   THE SOUND SOLUTION   ***
  35. echo                        ******************************
  36. echo                                 Version 3.25
  37. echo.
  38. echo                 Copyright (C) by: SOUND SOLUTIONS, INC.
  39. echo                                   125 MAIN STREET - SUITE B
  40. echo                                   STONEHAM, MASSACHUSETTS 02180
  41. echo.
  42. echo                      *****   ALL RIGHTS RESERVED   *****
  43. echo.
  44. echo.
  45. echo             The following is required to operate THE SOUND SOLUTION:
  46. echo.
  47. echo              *  IBM compatable computer with at least 640K RAM
  48. echo              *  Hard drive with at least 10 Megabytes free space
  49. echo              *  MS-DOS operating system 3.10 or later version
  50. echo                 installed on hard drive and PATH set to DOS files
  51. echo.
  52. echo.
  53. echo   Ctrl-C to Cancel or
  54. pause
  55.  
  56. cls
  57. echo.
  58. echo                     PLEASE WAIT WHILE LOADING SETUP PROGRAM....
  59.  
  60. REM  Run company information setup screen.
  61.      \SND-SOL\WORK CTRL -S0 -XS 1 -D -H " INITIAL SETUP INFORMATION "
  62.  
  63. cls
  64. echo.
  65. echo.
  66. echo           The Company Setup Information can be updated or changed
  67. echo           after the program is installed to the hard drive.
  68. echo.
  69. echo.
  70.  
  71. REM  Ask if OK to install program.
  72.      \INSTALL\YESNO "              Is it OK to install the program now (Y/N) ? "
  73.  
  74. REM  If Answered "N" then end setup.
  75.      IF ERRORLEVEL 1 GOTO RETRY
  76.  
  77. cls
  78. echo.
  79. echo.
  80. echo.
  81. echo                              Copying Installation Programs
  82. echo                              to hard drive...
  83.  
  84. REM  Otherwize copy installation assist programs to C: harddrive.
  85.      COPY \INSTALL\INSTALL.TSS C:\INSTALL.BAT
  86.      DEL \INSTALL.BAT
  87.      COPY \INSTALL\TUNE.EXE C:\TUNE.EXE
  88.      COPY \INSTALL\UNZIP.EXE C:\UNZIP.EXE
  89.      COPY \INSTALL\YESNO.COM C:\YESNO.COM
  90.  
  91. REM  Reset normal program path.
  92.      SET SSDSK=
  93.      SET SSIGN=
  94.  
  95. REM  Set path to drive C: root directory
  96.      SET PATH=C:\
  97.  
  98. cls
  99. echo.
  100. echo         ******************** INSTALLATION PROCEDURE **********************
  101. echo         ****                                                          ****
  102. echo         ****    After SETUP is completed, you may install THE SOUND   ****
  103. echo         ****    SOLUTION to a selected hard drive.                    ****
  104. echo         ****                                                          ****
  105. echo         ****    At prompt below, type INSTALL space, then the         ****
  106. echo         ****    hard drive letter you wish to copy THE SOUND SOL-     ****
  107. echo         ****    UTION to followed by a colon (:) then press ENTER.    ****
  108. echo         ****                                                          ****
  109. echo         ****               Example:    INSTALL C:                     ****
  110. echo         ****                                                          ****
  111. echo         ****   This will copy THE SOUND SOLUTION program to drive C:  ****
  112. echo         ******************************************************************
  113. echo.
  114. echo              Note:   During installation program C:\CONFIG.SYS is
  115. echo                      automatically updated to: FILES=25, BUFFERS=30
  116. echo.
  117. echo                      and C:\AUTOEXEC.BAT is automatically updated
  118. echo                      to SET SSDSK=(hard drive letter).
  119. echo.
  120. echo                            Computer will "BEEP" and prompt
  121. echo                             you when to insert next disk.
  122.  
  123. GOTO END
  124.  
  125. :RETRY
  126.  
  127. cls
  128. echo.
  129. echo             When you are ready to install THE SOUND SOLUTION insert
  130. echo             "SETUP DISK 1" in floppy drive and type SETUP again.
  131. echo.
  132. echo             If you have any other questions, call Sound Solutions, Inc.
  133. echo             at (617) 438-7686.
  134. echo.
  135.  
  136. GOTO END
  137.  
  138. :ERROR
  139.  
  140. cls
  141. echo.
  142. echo             You must have Disk 1 - SETUP in a floppy drive
  143. echo             and change to the floppy drive before running SETUP.
  144. echo.
  145. echo                   Prompt  C:  A:SETUP    Incorrect
  146. echo.
  147. echo                           A:  SETUP      Correct
  148. echo.
  149. echo    Try again...
  150. echo.
  151.  
  152. :END