home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a522 / 35.ddi / INSTALL.ORI < prev   
Encoding:
Text File  |  1990-11-09  |  3.7 KB  |  162 lines

  1. #-------------------------------------------------------------------------
  2. #
  3. # FILE
  4. #       INSTALL.ORI
  5. #       V2 installation script language interpreter file.
  6. #
  7. # DESCRIPTION
  8. #       Installation file for the Client Manager disk.
  9. #
  10. # MODIFIED
  11. #       Tim Kelley       19-FEB-90  Original version
  12. #
  13. #
  14. #-------------------------------------------------------------------------
  15.  
  16. #-------------------------------------------------------------------------
  17. # Generate symbols for Disk Volume label and Jacket label for disks.
  18. #-------------------------------------------------------------------------
  19. .LABELGEN
  20. u
  21. V51C MGR %u
  22. Client Manager Disk %u
  23.  
  24. .FILES -NOCOPY
  25. INSTALL.ORI        3760
  26.  
  27. .BOTH_USAGE=2
  28. .REAL_USAGE=1
  29. .PROT_USAGE=1
  30. .PRODUCT_NAME=Client Manager
  31. .PRODUCT_VERSION=1.0.2
  32. .PRODUCT_NUMBER=27
  33.  
  34. .CHECKREG 27
  35.  PRODUCT
  36.  VERSION
  37.  
  38. .<CHECK_INST>
  39.  
  40. .IF (%INSTALL_CHECKED%!=1)
  41.  .SELECTPROMPT
  42.   MODE
  43.   Would you like to install protected, real, or both modes of executables?
  44.   <MODEHELP>
  45.   1 Protected mode only
  46.   2 Real mode only
  47.   3 Both real and protected modes
  48.  .IF (%MODE%==999)
  49.   .EXIT
  50.  .ENDIF
  51.  
  52.  .IF (%MODE%==1)
  53.   .DISK_USAGE=%PROT_USAGE%
  54.  .ELSE
  55.   .IF (%MODE%==2)
  56.    .DISK_USAGE=%REAL_USAGE%
  57.   .ELSE
  58.    .DISK_USAGE=%BOTH_USAGE%
  59.   .ENDIF
  60.  .ENDIF
  61.  
  62.  .<CHECK_SPACE>
  63.  .IF (%PRODUCT%=="")
  64.   .IF (%DISK_USAGE% > %FREE_SPACE%)
  65.  
  66.    .SELECTPROMPT
  67.     USER_RESP
  68.     There is insufficient disk space on drive %ORACLE_DISK%: to install this product.
  69.     Would you like to attempt to install anyway?
  70.     <DISK_SPACE_HELP>
  71.     1     No
  72.     2     Yes
  73.  
  74.    .IF (%USER_RESP%==1)
  75.     .EXIT
  76.    .ENDIF
  77.    .IF (%USER_RESP%==999)
  78.     .GOTO <CHECK_INST>
  79.    .ENDIF
  80.   .ENDIF
  81.  
  82.  .ELSE
  83.   .SELECTPROMPT
  84.    USER_RESP
  85.    %PRODUCT_NAME% has already been installed.
  86.    Would you like to reinstall it?
  87.    <REINSTALL_HELP>
  88.    1     No
  89.    2     Yes
  90.  
  91.   .IF (%USER_RESP%==1)
  92.    .EXIT
  93.   .ENDIF
  94.   .IF (%USER_RESP%==999)
  95.    .GOTO <CHECK_INST>
  96.   .ENDIF
  97.  .ENDIF
  98. .ENDIF
  99.  
  100. .CLEARSCREEN
  101.  
  102. .IF (%MODE%!=1)
  103.  .MESSAGE
  104.   %NORMAL% Copying Client Manager executable into %ORACLE_HOME%\BIN...
  105.  
  106.  .FILES
  107. CLIMGR.EXE        32901   %ORACLE_HOME%\BIN\CLIMGR.EXE
  108. .ENDIF
  109.  
  110. .IF (%MODE%!=2)
  111.  .MESSAGE
  112.   %NORMAL% Copying Protected-mode Executables into %ORACLE_HOME%\PBIN...
  113.  
  114.  .FILES
  115. CLIMGR.PXE        43681   %ORACLE_HOME%\PBIN\CLIMGR.PXE
  116.  
  117.  .SYSCALL -QUIET
  118.   COPY %ORACLE_HOME%\PBIN\PLOADR.COM %ORACLE_HOME%\PBIN\CLIMGR.COM >NUL
  119.  
  120. .ENDIF
  121.  
  122. .MESSAGE
  123.  %NORMAL% Copying Client Manager message files into %ORACLE_HOME%\BIN...
  124.  
  125. .FILES
  126. CLIMGR.SCR        13792   %ORACLE_HOME%\BIN\CLIMGR.SCR
  127. CLIUSER.SCR           3   %ORACLE_HOME%\BIN\CLIUSER.SCR
  128.  
  129. .MESSAGE
  130.  %NORMAL% Updating registration information...
  131.  
  132. .REGISTERFILE
  133.  %PRODUCT_NUMBER% %PRODUCT_NAME%
  134.  %PRODUCT_VERSION%
  135.  <DEINSTALL>
  136.  
  137. .EXIT
  138.  
  139. .<DISK_SPACE_HELP>
  140. %PRODUCT_NAME% requires %DISK_USAGE%00K to install.  There is %FREE_SPACE%00K free on
  141. drive %ORACLE_DISK%:.  You may try to proceed anyway.  Unless you plan to install
  142. only a portion of it or you are reinstalling after an unsuccessful
  143. installation, ORAINST will probably terminate abnormally.
  144.  
  145. .<REINSTALL_HELP>
  146. %PRODUCT_NAME% has an entry in REGISTER.ORA, indicating that it has
  147. been installed previously.  You may either abort this installation and
  148. save the version you have already installed, or you may reinstall and
  149. overwrite the existing version.  Entry in REGISTER.ORA follows.
  150.  
  151. Product:  %PRODUCT%
  152. Version:  %VERSION%
  153.  
  154. .<MODEHELP>
  155. Normally, you will install protected-mode executables.  If you do not have
  156. extended memory or you are installing on an 8088- or 8086-based PC, choose
  157. real-mode executables.  If you are unsure, choose both.
  158.  
  159.  
  160. .<DEINSTALL>
  161.  
  162.