home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a063 / 1.img / SYBINST2.BAT < prev   
Encoding:
DOS Batch File  |  1992-05-18  |  5.5 KB  |  209 lines

  1. @echo off
  2. break on
  3.  
  4. rem check argument count
  5. if (%1) == () goto printusage 
  6. if (%2) == () goto printusage 
  7. if not (%3) == () goto printusage
  8.  
  9. rem Assign arguments to variables
  10. set FLOPDRV=%1
  11. set SYBHOME=%2
  12.  
  13. rem Hello banner
  14. echo.
  15. echo SYBASE remote SQL server installation
  16. echo.
  17. echo This batch file copies files from the NetWare SQL server
  18. echo installation floppies to a NetWare filesystem from a DOS
  19. echo workstation.  The user must have the SYBASE home 
  20. echo directory (be it already created or not) mounted on the 
  21. echo remote DOS workstation before starting. 
  22. echo.
  23.  
  24. rem Make SYBASE home directory
  25. rem echo Creating SYBASE home directory: %SYBHOME%
  26. rem mkdir %SYBHOME% > NUL:
  27. rem if errorlevel 0 goto cpflopstart
  28. rem goto askoverwrite
  29.  
  30. :cpflopstart
  31. rem Copy Diskette #1
  32. echo Please insert diskette #1 into drive %FLOPDRV%.
  33. pause
  34.  
  35. :cpflop1
  36. rem Check correctness of Diskette #1 
  37. if not exist %FLOPDRV%\spr_ds goto reins1flop
  38. echo.
  39. echo Copying Diskette #1 files...
  40. echo    (please ignore 'Unable to create directory' error messages)
  41. mkdir %SYBHOME%\install > NUL:
  42. if not errorlevel 0 goto mkdirerr
  43. copy %FLOPDRV%\spr_ds %SYBHOME%\install\spr_ds  /v > NUL:
  44. copy %FLOPDRV%\cpr_ds %SYBHOME%\install\cpr_ds  /v > NUL:
  45. if not errorlevel 0 goto cpflop1err
  46. mkdir %SYBHOME%\nlms
  47. copy %FLOPDRV%\sybinst.nlm %SYBHOME%\nlms\sybinst.nlm  /v > NUL:
  48. if not errorlevel 0 goto cpflop1err
  49.  
  50. rem Copy Diskette #2
  51. echo Please insert diskette #2 into drive %FLOPDRV%.
  52. pause
  53.  
  54. :cpflop2
  55. rem Check correctness of Diskette #2 
  56. if not exist %FLOPDRV%\sqlsrvr.nlm goto reins2flop
  57. echo Copying Diskette #2 files...
  58. copy %FLOPDRV%\sqlsrvr.nlm %SYBHOME%\nlms\sqlsrvr.nlm /v > NUL:
  59. if not errorlevel 0 goto cpflop2err
  60.  
  61. rem Copy Diskette #3
  62. echo Please insert diskette #3 into drive %FLOPDRV%.
  63. pause
  64.  
  65. :cpflop3
  66. rem Check correctness of Diskette #3 
  67. if not exist %FLOPDRV%\nlms\bldmastr.nlm goto reins3flop
  68. echo Copying Diskette #3 files...
  69. echo D | xcopy %FLOPDRV%\nlms %SYBHOME%\nlms /s /e /v > NUL:
  70. if not errorlevel 0 goto cpflop3err
  71.  
  72. rem Copy Diskette #4
  73. echo Please insert diskette #4 into drive %FLOPDRV%.
  74. pause
  75.  
  76. :cpflop4
  77. rem Check correctness of Diskette #4 
  78. if not exist %FLOPDRV%\scripts\instmstr.sql goto reins4flop
  79. echo Copying Diskette #4 files...
  80. mkdir %SYBHOME%\scripts
  81. echo D | xcopy %FLOPDRV%\scripts %SYBHOME%\scripts /s /e /v > NUL:
  82. if not errorlevel 0 goto cpflop4err
  83. mkdir %SYBHOME%\ncfs
  84. echo D | xcopy %FLOPDRV%\ncfs %SYBHOME%\ncfs /s /e /v > NUL:
  85. if not errorlevel 0 goto cpflop4err
  86. mkdir %SYBHOME%\locales
  87. echo D | xcopy %FLOPDRV%\locales %SYBHOME%\locales /s /e /v > NUL:
  88. if not errorlevel 0 goto cpflop4err
  89.  
  90. rem Copy Diskette #5
  91. echo Please insert diskette #5 into drive %FLOPDRV%.
  92. pause
  93.  
  94. :cpflop5
  95. rem Check correctness of Diskette #5
  96. if not exist %FLOPDRV%\nlms\probe.nlm goto reins5flop
  97. echo D | xcopy %FLOPDRV%\nlms %SYBHOME%\nlms /s /e /v > NUL:
  98. if not errorlevel 0 goto cpflop1err
  99. mkdir %SYBHOME%\charsets
  100. echo D | xcopy %FLOPDRV%\charsets %SYBHOME%\charsets /s /e /v > NUL:
  101. if not errorlevel 0 goto cpflop1err
  102.  
  103. goto printcompletion
  104. goto exit
  105.  
  106. :printusage
  107.     echo.
  108.     echo Usage: sybinst [flpy drv to copy from] [SYBASE home dir to copy to]
  109.     echo        i.e. SYBINST A: F:\SYBASE
  110.     echo.
  111.     goto exit
  112.  
  113. :printabort
  114.     echo.
  115.     echo Aborting manual copying of NetWare SQL server files...
  116.     echo.
  117.     goto exit
  118.  
  119. :printcompletion
  120.     echo.
  121.     echo Successfully completed the manual copying of NetWare SQL server files...
  122.     echo.
  123.     goto exit
  124.  
  125. :askoverwrite
  126.     echo.
  127.     echo The SYBASE home directory %SYBHOME% already exists.
  128.     echo If you don't want to overwrite what is in %SYBHOME%,
  129.     echo press CONTROL-C NOW to break out of this installer or
  130.     pause
  131.     goto cpflopstart 
  132.  
  133. :mkdirerr
  134.     echo.
  135.     echo Error: Unable to create a directory.
  136.     echo Check if the volume/drive that the SYBASE home directory exists and/or you 
  137.     echo have sufficient permissions to create a directory/file there.
  138.     echo.
  139.     goto printabort
  140.  
  141. :cpfloperr
  142.     echo Check if the NetWare SQL server diskette is correctly echo inserted in the 
  143.     echo    diskette drive %FLOPDRV%.
  144.     echo.
  145.     goto printabort
  146.  
  147. :cpflop1err
  148.     echo.
  149.     echo Error: Unable to read diskette #1 from drive %FLOPDRV%.
  150.     goto cpfloperr
  151.  
  152. :cpflop2err
  153.     echo.
  154.     echo Error: Unable to read diskette #2 from drive %FLOPDRV%.
  155.     goto cpfloperr
  156.  
  157. :cpflop3err
  158.     echo.
  159.     echo Error: Unable to read diskette #3 from drive %FLOPDRV%.
  160.     goto cpfloperr
  161.  
  162. :cpflop4err
  163.     echo.
  164.     echo Error: Unable to read diskette #4 from drive %FLOPDRV%.
  165.     goto cpfloperr
  166.  
  167. :cpflop5err
  168.     echo.
  169.     echo Error: Unable to read diskette #5 from drive %FLOPDRV%.
  170.     goto cpfloperr
  171.  
  172. :reins1flop
  173.     echo.
  174.     echo Error: Diskette currently in drive %FLOPDRV% is NOT the NetWare SQL server diskette #1.
  175.     echo Insert correct diskette and
  176.     pause
  177.     goto cpflop1
  178.  
  179. :reins2flop
  180.     echo.
  181.     echo Error: Diskette currently in drive %FLOPDRV% is NOT the NetWare SQL server diskette #2.
  182.     echo Insert correct diskette and 
  183.     pause
  184.     goto cpflop2
  185.  
  186. :reins3flop
  187.     echo.
  188.     echo Error: Diskette currently in drive %FLOPDRV% is NOT the NetWare SQL server diskette #3.
  189.     echo Insert correct diskette and 
  190.     pause
  191.     goto cpflop3
  192.  
  193. :reins4flop
  194.     echo.
  195.     echo Error: Diskette currently in drive %FLOPDRV% is NOT the NetWare SQL server diskette #4.
  196.     echo Insert correct diskette and 
  197.     pause
  198.     goto cpflop4
  199.  
  200. :reins5flop
  201.     echo.
  202.     echo Error: Diskette currently in drive %FLOPDRV% is NOT the NetWare SQL server diskette #5.
  203.     echo Insert correct diskette and 
  204.     pause
  205.     goto cpflop5
  206.  
  207. :exit
  208.     exit
  209.