home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a525 / 1.ddi / SYSINIT.ORI < prev   
Encoding:
Text File  |  1992-10-21  |  18.0 KB  |  760 lines

  1. #-------------------------------------------------------------------------
  2. #
  3. # FILE
  4. #       SYSINIT.ORI
  5. #       V6.0 installation environment initialization file.
  6. #
  7. # DESCRIPTION
  8. #       This file initializes the environment for the installation process.
  9. #       It is always read first by ORAINST.
  10. #
  11. # OWNER
  12. #       Tim Kelley
  13. #
  14. # CREATION DATE
  15. #       19-JUL-89
  16. #
  17. # CURRENT VERSION
  18. #       13-SEP-90
  19. #
  20. #-------------------------------------------------------------------------
  21.  
  22. # **********************************************************************
  23. # if we're coming back from ORAINST1, don't do anything
  24. # **********************************************************************
  25. .IF (%CHAIN%==1)
  26.  .EXIT
  27. .ENDIF
  28.  
  29. # **********************************************************************
  30. # first check the environment
  31. # **********************************************************************
  32.  
  33. .RDBMS_VERSION=6
  34. .ENVIRON=0
  35. .RESULT=0
  36. .FLOPPY=YES
  37. .LAN_INST=NO
  38.  
  39. .TRANSLATE
  40.  %CONFIG%
  41.  CONFIG
  42.  
  43. .TRANSLATE
  44.  %ORACLE_HOME%
  45.  ORACLE_HOME
  46.  
  47. .ACCESS
  48.  %ORACLE_HOME%\PBIN
  49.  
  50. .RESULT=%RESULT%+%ACCESSRET%
  51.  
  52. .ACCESS
  53.  %ORACLE_HOME%\BIN
  54.  
  55. .RESULT=%RESULT%+%ACCESSRET%
  56.  
  57. .ACCESS
  58.  %ORACLE_HOME%\DBS
  59.  
  60. .RESULT=%RESULT%+%ACCESSRET%
  61.  
  62. .ACCESS
  63.  %CONFIG%
  64.  
  65. .RESULT=%RESULT%+%ACCESSRET%
  66.  
  67. # **********************************************************************
  68. # is everything there?
  69. # **********************************************************************
  70.  
  71. .IF (%CONFIG%!="" && %ORACLE_HOME%!="\ORACLE5" && %RESULT%==4)
  72.  .ENVIRON=1
  73. .ENDIF
  74.  
  75. # **********************************************************************
  76. # if we're not executing ORAINST from a floppy drive, set a default
  77. # %SOURCE_DISK%
  78. # **********************************************************************
  79.  
  80. .IF (%SOURCE_DISK%=="ZZ")
  81.  .FLOPPY=NO
  82.  .SOURCE_DISK=A
  83. .ENDIF
  84.  
  85. # **********************************************************************
  86. # if the environment is bad and we're not executing from a floppy drive,
  87. # it's time to quit
  88. # **********************************************************************
  89.  
  90. .IF (%ENVIRON%==0 && %FLOPPY%=="NO")
  91.  .CLEARSCREEN
  92.  .MESSAGE
  93.   %HILITE%
  94.  
  95.   The ORACLE installation files need to be updated.  To do this, you
  96.   must run ORAINST from your Installation diskette.  Please re-execute
  97.   ORAINST from your floppy drive now by typing "A:ORAINST",
  98.   substituting the appropriate drive letter for A.
  99.  .PAUSE
  100.  
  101.  .EXIT
  102. .ENDIF
  103.  
  104. # **********************************************************************
  105. # if we couldn't find %ORACLE_HOME%, build a default
  106. # **********************************************************************
  107.  
  108. .IF (%ORACLE_HOME%=="\ORACLE5")
  109.  .ORACLE_HOME=%ORACLE_DISK%:\ORACLE%RDBMS_VERSION%
  110. .ENDIF
  111.  
  112. .<LOGO>
  113.  
  114. .CLEARSCREEN
  115.  
  116. .MESSAGE
  117. %WARNING%
  118. %WARNING%     ▄▀▀▀▀▀▀▀▀▀▄   ▄▀▀▀▀▀▀▄     ▄▀▄      ▄▀▀▀▀▀▀▀ █        ▄▀▀▀▀▀▀▀▀
  119. %WARNING%    █           █  █      █    █   █    █         █       █
  120. %WARNING%   █             █ █ ▀█▀▀▀    █▄▄▄▄ █  █          █       █▄▄▄▄▄▄▄▄▄
  121. %WARNING%    █           █  █   ▀▄    █       █  █         █       █
  122. %WARNING%     ▀▄▄▄▄▄▄▄▄▄▀   █     ▀▄ █         █  ▀▄▄▄▄▄▄▄ █▄▄▄▄▄▄▄ ▀▄▄▄▄▄▄▄▄
  123.  
  124. .MESSAGE
  125. %NORMAL%           (c) Copyright Oracle Corporation, 1987, 1992.
  126.  
  127. %NORMAL%                   Installation Version %INSTALL_VERSION%
  128. %NORMAL%                        All Rights Reserved
  129.  
  130.  
  131. This program installs ORACLE software on your system by creating
  132. the appropriate directories on your hard disk and then copying the
  133. product files.  In addition, this install may ask for information
  134. in order to configure your system properly for ORACLE.
  135.  
  136. Follow the instructions on the screen and also refer to the
  137. appropriate ORACLE Installation and User's Guide.
  138.  
  139.  
  140.  
  141. .PAUSE
  142.  
  143. # **********************************************************************
  144. # Prompt user for SOURCE DISK (A: or B:), the disk where ORACLE products
  145. # will be installed from.
  146. # **********************************************************************
  147. .<SRCDISK>
  148. .CLEARSCREEN
  149. .MESSAGE
  150.  %HILITE% Please answer the following questions regarding this installation
  151.  session.  For each question, you may accept the default or supply a
  152.  new answer.
  153.  
  154. .<INVAL_DRIVE>
  155. .STRINGPROMPT 1 1
  156.  USER_RESP
  157.  Enter the drive you will install ORACLE products from.
  158.  <SRCDHELP>
  159.  %SOURCE_DISK%
  160.  
  161. .IF (%USER_RESP%=="999")
  162.  .GOTO <LOGO>
  163. .ENDIF
  164.  
  165. .ACCESS -DRIVE
  166.  %USER_RESP%:
  167.  
  168. .IF (%ACCESSRET%==0)
  169.  .MESSAGE
  170.   %WARNING%
  171.   Invalid drive - please reenter.
  172.  
  173.  .GOTO <INVAL_DRIVE>
  174. .ENDIF
  175.  
  176. .SOURCE_DISK=%USER_RESP%
  177.  
  178. .<OHOME>
  179. .STRINGPROMPT
  180.  USER_RESP
  181.  Enter the disk drive and path you will install ORACLE products to.
  182.  <HOMEHELP>
  183.  %ORACLE_HOME%
  184.  
  185. .IF (%USER_RESP%=="999")
  186.  .GOTO <SRCDISK>
  187. .ELSE
  188.  .IF (%ORACLE_HOME%!=%USER_RESP%)
  189.   .ORACLE_HOME=%USER_RESP%
  190.   .ENVIRON=0
  191.  .ENDIF
  192. .ENDIF
  193.  
  194. .MKDIR
  195.  %ORACLE_HOME%
  196.  
  197. .IF (%MKDIRRET%!=0)
  198.  .MESSAGE
  199.   %WARNING%
  200.   Invalid pathname - please reenter.
  201.  
  202.  .GOTO <OHOME>
  203. .ENDIF
  204.  
  205. # **********************************************************************
  206. # check if language parameter is set in CONFIG.ORA, if not set it
  207. # **********************************************************************
  208.  
  209. .TRANSLATE
  210. %LANGUAGE%
  211. LANGUAGE
  212.  
  213. .<LANGUAGE>
  214. .IF (%LANGUAGE%=="" || %ENVIRON%==0)
  215.  .SELECTPROMPT
  216.  USER_RESP
  217.  Please enter the language you would like to use for your ORACLE products.
  218.  <LANGUAGE_HELP>
  219.  1 English
  220.  2 Brazilian Portuguese
  221.  3 Czech
  222.  4 Danish
  223.  5 Dutch
  224.  6 Finnish
  225.  7 French
  226.  8 German
  227.  9 Greek
  228.  10 Hungarian
  229.  11 Italian
  230.  12 Norwegian
  231.  13 Polish
  232.  14 Portuguese
  233.  15 Russian
  234.  16 Slovak
  235.  17 Spanish
  236.  18 Swedish
  237.  19 Turkish
  238.  
  239.   .IF (%USER_RESP%==999)
  240.    .CLEARSCREEN
  241.    .GOTO <OHOME>
  242.   .ENDIF
  243.  
  244.   .IF (%USER_RESP%==1)
  245.     .LANGUAGE=American_America.US7ASCII
  246.   .ENDIF
  247.  
  248.   .IF (%USER_RESP%==2)
  249.     .LANGUAGE=Brazilian Portuguese_Brazil.WE8PC850
  250.   .ENDIF
  251.  
  252.   .IF (%USER_RESP%==3)
  253.     .LANGUAGE=Czech_Czechoslovakia.EE8PC852
  254.   .ENDIF
  255.  
  256.   .IF (%USER_RESP%==4)
  257.     .LANGUAGE=Danish_Denmark.DK8PC850
  258.   .ENDIF
  259.  
  260.   .IF (%USER_RESP%==5)
  261.     .LANGUAGE=Dutch_The Netherlands.WE8PC850
  262.   .ENDIF
  263.  
  264.   .IF (%USER_RESP%==6)
  265.     .LANGUAGE=Finnish_Finland.SF8PC850
  266.   .ENDIF
  267.  
  268.   .IF (%USER_RESP%==7)
  269.     .LANGUAGE=French_France.WE8PC850
  270.   .ENDIF
  271.  
  272.   .IF (%USER_RESP%==8)
  273.     .LANGUAGE=German_Germany.WE8PC850
  274.   .ENDIF
  275.  
  276.   .IF (%USER_RESP%==9)
  277.     .LANGUAGE=Greek_Greece.EL8PC437s
  278.   .ENDIF
  279.  
  280.   .IF (%USER_RESP%==10)
  281.     .LANGUAGE=Hungarian_Hungary.EE8PC852
  282.   .ENDIF
  283.  
  284.   .IF (%USER_RESP%==11)
  285.     .LANGUAGE=Italian_Italy.WE8PC850
  286.   .ENDIF
  287.  
  288.   .IF (%USER_RESP%==12)
  289.     .LANGUAGE=Norwegian_Norway.N8PC850
  290.   .ENDIF
  291.  
  292.   .IF (%USER_RESP%==13)
  293.     .LANGUAGE=Polish_Poland.EE8PC852
  294.   .ENDIF
  295.  
  296.   .IF (%USER_RESP%==14)
  297.     .LANGUAGE=Portuguese_Portugal.WE8PC850
  298.   .ENDIF
  299.  
  300.   .IF (%USER_RESP%==15)
  301.     .LANGUAGE=Russian_ussr.RU8PC866
  302.   .ENDIF
  303.  
  304.   .IF (%USER_RESP%==16)
  305.     .LANGUAGE=Slovak_Czechoslovakia.EE8PC852
  306.   .ENDIF
  307.  
  308.   .IF (%USER_RESP%==17)
  309.     .LANGUAGE=Spanish_Spain.WE8PC850
  310.   .ENDIF
  311.  
  312.   .IF (%USER_RESP%==18)
  313.     .LANGUAGE=Swedish_Sweden.S8PC850
  314.   .ENDIF
  315.  
  316.   .IF (%USER_RESP%==19)
  317.     .LANGUAGE=Turkish_Turkey.TR8PC857
  318.   .ENDIF
  319.  
  320.  .MODFILE 1
  321.   %ORACLE_HOME%\CONFIG.ORA
  322.   LANGUAGE=%LANGUAGE%
  323.  
  324. .ENDIF
  325.  
  326. .ACCESS
  327.  %ORACLE_HOME%\DBS\REGISTER.ORA
  328.  
  329. .REGISTER=%ACCESSRET%
  330.  
  331. # **********************************************************************
  332. #  if environment OK, do other checks & exit
  333. # **********************************************************************
  334. .IF (%ENVIRON%==1)
  335.  
  336.  .IF (%REGISTER%==0)
  337.   .SYSCALL -QUIET
  338.    COPY %SOURCE_DISK%:\REGISTER.ORA %ORACLE_HOME%\DBS >NUL
  339.  .ENDIF
  340.  
  341. # **********************************************************************
  342. # make sure that we have the right install version
  343. # **********************************************************************
  344. .CLEARSCREEN
  345.  
  346.  .CHECKREG 0
  347.   PRODUCT
  348.   VERSION
  349.  
  350.  .IF (%VERSION%<%INSTALL_VERSION% || %VERSION%>"5")
  351.   .IF (%FLOPPY%=="YES")
  352.    .RUNSCRIPT %SOURCE_DISK%:\INSTALL.ORI
  353.   .ELSE
  354.    .CLEARSCREEN
  355.    .MESSAGE
  356.     %HILITE%
  357.  
  358.     The ORACLE installation files need to be updated.  To do this, you
  359.     must run ORAINST from your Installation diskette.  Please re-execute
  360.     ORAINST from your floppy drive now by typing "A:ORAINST",
  361.     substituting the appropriate drive letter for A.
  362.  
  363.     .PAUSE
  364.    .ENVIRON=0
  365.   .ENDIF
  366.  .ENDIF
  367.  
  368.  .EXIT
  369. .ENDIF
  370.  
  371. # **********************************************************************
  372. # Otherwise, bad environment so fix it!
  373. # Since the environment is bad, then we will need to know
  374. # the boot drive in order to modify the environment...
  375. # **********************************************************************
  376.  
  377. .CLEARSCREEN
  378.  
  379. .BOOT_DISK=C
  380.  
  381. .<BTDISK>
  382. .STRINGPROMPT 1 1
  383.  USER_RESP
  384.  Enter the drive you boot your computer from.
  385.  <BOOTHELP>
  386.  %BOOT_DISK%
  387.  
  388. .IF (%USER_RESP%=="999")
  389.  .CLEARSCREEN
  390.  .GOTO <OHOME>
  391. .ENDIF
  392.  
  393. .ACCESS -DRIVE
  394.  %USER_RESP%:
  395.  
  396. .IF (%ACCESSRET%==0)
  397.  .MESSAGE
  398.   %WARNING%
  399.   Invalid drive - please reenter.
  400.  
  401.  .GOTO <BTDISK>
  402. .ENDIF
  403.  
  404. .BOOT_DISK=%USER_RESP%
  405.  
  406. .CLEARSCREEN
  407.  
  408. .MESSAGE
  409.  %NORMAL%
  410.  
  411. Configuring system (please wait) ...
  412.  
  413. # **********************************************************************
  414. # Create the ORACLE home directories.
  415. # **********************************************************************
  416.  
  417. .MKDIR
  418.  %ORACLE_HOME%\PBIN
  419.  
  420. .MKDIR
  421.  %ORACLE_HOME%\BIN
  422.  
  423. .MKDIR
  424.  %ORACLE_HOME%\DBS
  425.  
  426. # **********************************************************************
  427. # if there isn't a REGISTER.ORA, get one
  428. # **********************************************************************
  429.  
  430. .IF (%REGISTER%==0)
  431.  .IF (%FLOPPY%=="NO")
  432.  
  433.   .MESSAGE
  434. %HILITE%
  435. Please insert the Installation diskette into drive %SOURCE_DISK%:.
  436.  
  437.   .PAUSE
  438.  .ENDIF
  439.  
  440.  .SYSCALL -QUIET
  441.   COPY %SOURCE_DISK%:\REGISTER.ORA %ORACLE_HOME%\DBS >NUL
  442.  
  443. .CLEARSCREEN
  444. .ENDIF
  445.  
  446. # **********************************************************************
  447. #  Check CONFIG.ORA to make sure %ORACLE_HOME% is correct
  448. # **********************************************************************
  449.  
  450. .ACCESS
  451.  %ORACLE_HOME%\CONFIG.ORA
  452.  
  453. .IF (%ACCESSRET%==1)
  454.  .MESSAGE
  455.   %NORMAL% Modifying %ORACLE_HOME%\CONFIG.ORA ...
  456.  .MODFILE 0
  457.   %ORACLE_HOME%\CONFIG.ORA
  458. ORACLE_HOME=%ORACLE_HOME%
  459. .ELSE
  460.  .MESSAGE
  461.   %NORMAL% Creating file %ORACLE_HOME%\CONFIG.ORA ...
  462.  .WRITEFILE
  463.   %ORACLE_HOME%\CONFIG.ORA
  464. ORACLE_HOME=%ORACLE_HOME%
  465. .ENDIF
  466.  
  467. # **********************************************************************
  468. #  Update the installation files
  469. # **********************************************************************
  470.  
  471. .IF (%FLOPPY%=="NO")
  472.  
  473.  .MESSAGE
  474. %HILITE%
  475. Please insert the Installation diskette into drive %SOURCE_DISK%:.
  476.  
  477.  .PAUSE
  478. .ENDIF
  479.  
  480. .RUNSCRIPT %SOURCE_DISK%:\INSTALL.ORI
  481.  
  482. # **********************************************************************
  483. #  Update DOS's CONFIG.SYS file to have all the current info.
  484. # **********************************************************************
  485.  
  486. .CONFUPDATE=0
  487. .AUTOUPDATE=0
  488. .NEWCONF=0
  489. .NEWAUTO=0
  490.  
  491. .IF (%BOOT_DISK%<"C")
  492.  .MESSAGE
  493.   %HILITE%
  494.   Please insert your boot diskette in drive %BOOT_DISK%: now.
  495.  
  496.  .PAUSE
  497. .ENDIF
  498.  
  499. .ACCESS
  500.  %BOOT_DISK%:\CONFIG.SYS
  501.  
  502. .IF (%ACCESSRET%==1)
  503.  
  504. # **********************************************************************
  505. # CONFIG.SYS exists
  506. # **********************************************************************
  507.  
  508.  .SYSCALL -QUIET
  509.   COPY %BOOT_DISK%:\CONFIG.SYS %BOOT_DISK%:\CONFIG.NEW >NUL
  510.  
  511.  .RESULT=0
  512.  
  513.  .MODFILE 2
  514.   %BOOT_DISK%:\CONFIG.NEW
  515. FILES=40
  516.  .RESULT=%RESULT%+%MODIFIED%
  517.  
  518.  .MODFILE 2
  519.   %BOOT_DISK%:\CONFIG.NEW
  520. BUFFERS=16
  521.  .RESULT=%RESULT%+%MODIFIED%
  522.  
  523.  .MODFILE 0
  524.   %BOOT_DISK%:\CONFIG.NEW
  525. BREAK=ON
  526.  .RESULT=%RESULT%+%MODIFIED%
  527.  
  528.  .IF (%RESULT% > 0)
  529.   .CONFUPDATE=1
  530.   .<MODCONFIG>
  531.   .SELECTPROMPT
  532.    USER_RESPONSE
  533.    Changes to the file %BOOT_DISK%:\CONFIG.SYS are needed.
  534.    Would you like the changes to be made automatically?
  535.    <CONFHELP>
  536.    1       Yes
  537.    2       No
  538.  
  539.   .IF (%USER_RESPONSE%==1)
  540.    .SYSCALL
  541.     COPY %BOOT_DISK%:\CONFIG.SYS %BOOT_DISK%:\CONFIG.BAK >NUL
  542.    .SYSCALL
  543.     COPY %BOOT_DISK%:\CONFIG.NEW %BOOT_DISK%:\CONFIG.SYS >NUL
  544.    .SYSCALL
  545.     DEL %BOOT_DISK%:\CONFIG.NEW >NUL
  546.   .ELSE
  547.    .IF (%USER_RESPONSE%==2)
  548.     .NEWCONF=1
  549.    .ELSE
  550.     .SYSCALL
  551.      DEL %BOOT_DISK%:\CONFIG.NEW >NUL
  552.     .CLEARSCREEN
  553.     .GOTO <BTDISK>
  554.    .ENDIF
  555.   .ENDIF
  556.  .ELSE
  557.  
  558. # **********************************************************************
  559. # No changes to CONFIG were necessary
  560. # **********************************************************************
  561.  
  562.   .SYSCALL
  563.    DEL %BOOT_DISK%:\CONFIG.NEW
  564.  .ENDIF
  565.  
  566. .ELSE
  567.  
  568. # **********************************************************************
  569. # CONFIG.SYS doesn't exist
  570. # **********************************************************************
  571. .CLEARSCREEN
  572.  
  573.  .MESSAGE
  574.   %HILITE%
  575.   Warning - could not find file %BOOT_DISK%:\CONFIG.SYS
  576.   Creating file %BOOT_DISK%:\CONFIG.SYS...
  577.  
  578.  .WRITEFILE
  579.   %BOOT_DISK%:\CONFIG.SYS
  580. FILES=40
  581. BUFFERS=16
  582. BREAK=ON
  583. .ENDIF
  584.  
  585. # **********************************************************************
  586. # Now check AUTOEXEC.BAT
  587. # **********************************************************************
  588.  
  589. .ACCESS
  590.  %BOOT_DISK%:\AUTOEXEC.BAT
  591.  
  592. .IF (%ACCESSRET%==1)
  593.  
  594. # **********************************************************************
  595. # AUTOEXEC.BAT exists
  596. # **********************************************************************
  597.  
  598.  .RESULT=0
  599.  
  600.  .SYSCALL -QUIET
  601.   COPY %BOOT_DISK%:\AUTOEXEC.BAT %BOOT_DISK%:\AUTOEXEC.NEW >NUL
  602.  
  603.  .MODFILE 1
  604.   %BOOT_DISK%:\AUTOEXEC.NEW
  605.   SET PATH=%ORACLE_HOME%\PBIN;%ORACLE_HOME%\BIN;
  606.  .RESULT=%RESULT%+%MODIFIED%
  607.  
  608.  .MODFILE 3
  609.   %BOOT_DISK%:\AUTOEXEC.NEW
  610.   PATH
  611.   SET CONFIG=%ORACLE_HOME%\CONFIG.ORA
  612.  .RESULT=%RESULT%+%MODIFIED%
  613.  .IF (%RESULT%>0)
  614.  
  615.   .<MODAUTO>
  616.   .SELECTPROMPT
  617.    USER_RESPONSE
  618.    Changes to the file %BOOT_DISK%:\AUTOEXEC.BAT are needed.
  619.    Would you like the changes to be made automatically?
  620.    <AUTOHELP>
  621.    1       Yes
  622.    2       No
  623.  
  624.   .IF (%USER_RESPONSE%==1)
  625.    .SYSCALL
  626.     COPY %BOOT_DISK%:\AUTOEXEC.BAT %BOOT_DISK%:\AUTOEXEC.BAK >NUL
  627.    .SYSCALL
  628.     COPY %BOOT_DISK%:\AUTOEXEC.NEW %BOOT_DISK%:\AUTOEXEC.BAT >NUL
  629.    .SYSCALL
  630.     DEL %BOOT_DISK%:\AUTOEXEC.NEW
  631.   .ELSE
  632.    .IF (%USER_RESPONSE%==2)
  633.     .NEWAUTO=1
  634.    .ELSE
  635.     .IF (%CONFUPDATE%==1)
  636.      .IF (%NEWCONF%==0)
  637.       .SYSCALL
  638.        COPY %BOOT_DISK%:\CONFIG.SYS %BOOT_DISK%:\CONFIG.NEW >NUL
  639.       .SYSCALL
  640.        COPY %BOOT_DISK%:\CONFIG.BAK %BOOT_DISK%:\CONFIG.SYS >NUL
  641.       .SYSCALL
  642.        DEL %BOOT_DISK%:\CONFIG.BAK
  643.      .ENDIF
  644.      .NEWCONF=0
  645.      .GOTO <MODCONFIG>
  646.     .ENDIF
  647.     .CLEARSCREEN
  648.     .GOTO <BTDISK>
  649.    .ENDIF
  650.   .ENDIF
  651.  .ELSE
  652.  
  653. # **********************************************************************
  654. # No changes to AUTOEXEC were necessary
  655. # **********************************************************************
  656.  
  657.  .SYSCALL
  658.   DEL %BOOT_DISK%:\AUTOEXEC.NEW
  659.  .ENDIF
  660. .ELSE
  661.  
  662. # **********************************************************************
  663. # AUTOEXEC.BAT doesn't exist
  664. # **********************************************************************
  665. .CLEARSCREEN
  666.  
  667.  .MESSAGE
  668.   %HILITE%
  669.   Warning - could not find file %BOOT_DISK%:\AUTOEXEC.BAT
  670.   Creating file %BOOT_DISK%:\AUTOEXEC.BAT...
  671.  
  672.  .WRITEFILE
  673.   %BOOT_DISK%:\AUTOEXEC.BAT
  674. @ECHO OFF
  675. VER
  676. PROMPT $P$G
  677.  
  678. PATH %ORACLE_HOME%\PBIN;%ORACLE_HOME%\BIN;%BOOT_DISK%:\
  679. SET CONFIG=%ORACLE_HOME%\CONFIG.ORA
  680. .ENDIF
  681.  
  682. .CLEARSCREEN
  683. .IF (%NEWCONF%==1)
  684.  .MESSAGE
  685.   %NORMAL%      A sample CONFIG.SYS can be found in %BOOT_DISK%:\CONFIG.NEW
  686.   %NORMAL%      See your "Getting Started" manual for help with editing the
  687.   %NORMAL%      changes into your CONFIG.SYS file.
  688.   .PAUSE
  689.  
  690. .ENDIF
  691. .IF (%NEWAUTO%==1)
  692.  .MESSAGE
  693.   %NORMAL%      A sample AUTOEXEC.BAT can be found in %BOOT_DISK%:\AUTOEXEC.NEW
  694.   %NORMAL%      See your "Getting Started" manual for help with editing the
  695.   %NORMAL%      changes into your AUTOEXEC.BAT file.
  696.   .PAUSE
  697.  
  698. .ENDIF
  699.  
  700. .IF (%BOOT_DISK%<"C")
  701.  .MESSAGE
  702.   %HILITE%
  703.   In order to initialize the environment properly, please reboot
  704.   your PC by pressing <CTRL-ALT-DEL>.  After rebooting, continue
  705.   the installation by typing ORAINST at the DOS prompt.
  706.   .PAUSE
  707.  
  708. .ELSE
  709.  .MESSAGE
  710.   %HILITE%
  711.   In order to initialize the environment properly, please remove
  712.   the diskette from the floppy drive and press <CTRL-ALT-DEL>.
  713.   After rebooting, continue the installation by typing ORAINST at
  714.   the DOS prompt.
  715.  
  716. .PAUSE
  717. .ENDIF
  718.  
  719. .EXIT
  720.  
  721. # **********************************************************************
  722. # Help panels ...
  723. # **********************************************************************
  724. .<BOOTHELP>
  725. Please enter the letter (A-Z) corresponding to the drive from which
  726. you boot your computer.  This drive will typically have system files
  727. and information on it.  For most machines, this drive is C.
  728.  
  729. .<SRCDHELP>
  730. Please enter the letter (A-Z) corresponding to the drive from which
  731. you will be installing your ORACLE products.  This drive is usually
  732. a floppy drive, either A or B.
  733.  
  734. .<CONFHELP>
  735. In order to work properly, ORACLE requires that certain system variables
  736. be set to specified values.  Choosing Yes will cause the necessary
  737. changes to be made to your CONFIG.SYS file automatically.  Choosing
  738. No will cause a sample CONFIG.NEW file to be created with the needed
  739. changes made to it.
  740.  
  741. .<AUTOHELP>
  742. In order to work properly, ORACLE requires that certain system variables
  743. be set to specified values.  Choosing Yes will cause the necessary
  744. changes to be made to your AUTOEXEC.BAT file automatically.  Choosing
  745. No will cause a sample AUTOEXEC.NEW file to be created with the needed
  746. changes made to it.
  747.  
  748. .<HOMEHELP>
  749. Please enter the FULL path (drive and directory name) where you wish
  750. to install ORACLE.  Your response should be similar in form to:
  751. C:\ORACLE6
  752.  
  753. .<LANGUAGE_HELP>
  754. Hit <RETURN> for the language that you would like your Oracle Tools
  755. to be displayed in.  By choosing a language, you will have the install
  756. add a LANGUAGE line to the config.ora file and determine which message
  757. files are copied from your ORACLE installation disks for all ORACLE
  758. products.
  759.  
  760.