home *** CD-ROM | disk | FTP | other *** search
- @echo off
- break on
-
- rem check argument count
- if (%1) == () goto printusage
- if (%2) == () goto printusage
- if not (%3) == () goto printusage
-
- rem Assign arguments to variables
- set FLOPDRV=%1
- set SYBHOME=%2
-
- rem Hello banner
- echo.
- echo SYBASE remote SQL server installation
- echo.
- echo This batch file copies files from the NetWare SQL server
- echo installation floppies to a NetWare filesystem from a DOS
- echo workstation. The user must have the SYBASE home
- echo directory (be it already created or not) mounted on the
- echo remote DOS workstation before starting.
- echo.
-
- rem Make SYBASE home directory
- rem echo Creating SYBASE home directory: %SYBHOME%
- rem mkdir %SYBHOME% > NUL:
- rem if errorlevel 0 goto cpflopstart
- rem goto askoverwrite
-
- :cpflopstart
- rem Copy Diskette #1
- echo Please insert diskette #1 into drive %FLOPDRV%.
- pause
-
- :cpflop1
- rem Check correctness of Diskette #1
- if not exist %FLOPDRV%\spr_ds goto reins1flop
- echo.
- echo Copying Diskette #1 files...
- echo (please ignore 'Unable to create directory' error messages)
- mkdir %SYBHOME%\install > NUL:
- if not errorlevel 0 goto mkdirerr
- copy %FLOPDRV%\spr_ds %SYBHOME%\install\spr_ds /v > NUL:
- copy %FLOPDRV%\cpr_ds %SYBHOME%\install\cpr_ds /v > NUL:
- if not errorlevel 0 goto cpflop1err
- mkdir %SYBHOME%\nlms
- copy %FLOPDRV%\sybinst.nlm %SYBHOME%\nlms\sybinst.nlm /v > NUL:
- if not errorlevel 0 goto cpflop1err
-
- rem Copy Diskette #2
- echo Please insert diskette #2 into drive %FLOPDRV%.
- pause
-
- :cpflop2
- rem Check correctness of Diskette #2
- if not exist %FLOPDRV%\sqlsrvr.nlm goto reins2flop
- echo Copying Diskette #2 files...
- copy %FLOPDRV%\sqlsrvr.nlm %SYBHOME%\nlms\sqlsrvr.nlm /v > NUL:
- if not errorlevel 0 goto cpflop2err
-
- rem Copy Diskette #3
- echo Please insert diskette #3 into drive %FLOPDRV%.
- pause
-
- :cpflop3
- rem Check correctness of Diskette #3
- if not exist %FLOPDRV%\nlms\bldmastr.nlm goto reins3flop
- echo Copying Diskette #3 files...
- echo D | xcopy %FLOPDRV%\nlms %SYBHOME%\nlms /s /e /v > NUL:
- if not errorlevel 0 goto cpflop3err
-
- rem Copy Diskette #4
- echo Please insert diskette #4 into drive %FLOPDRV%.
- pause
-
- :cpflop4
- rem Check correctness of Diskette #4
- if not exist %FLOPDRV%\scripts\instmstr.sql goto reins4flop
- echo Copying Diskette #4 files...
- mkdir %SYBHOME%\scripts
- echo D | xcopy %FLOPDRV%\scripts %SYBHOME%\scripts /s /e /v > NUL:
- if not errorlevel 0 goto cpflop4err
- mkdir %SYBHOME%\ncfs
- echo D | xcopy %FLOPDRV%\ncfs %SYBHOME%\ncfs /s /e /v > NUL:
- if not errorlevel 0 goto cpflop4err
- mkdir %SYBHOME%\locales
- echo D | xcopy %FLOPDRV%\locales %SYBHOME%\locales /s /e /v > NUL:
- if not errorlevel 0 goto cpflop4err
-
- rem Copy Diskette #5
- echo Please insert diskette #5 into drive %FLOPDRV%.
- pause
-
- :cpflop5
- rem Check correctness of Diskette #5
- if not exist %FLOPDRV%\nlms\probe.nlm goto reins5flop
- echo D | xcopy %FLOPDRV%\nlms %SYBHOME%\nlms /s /e /v > NUL:
- if not errorlevel 0 goto cpflop1err
- mkdir %SYBHOME%\charsets
- echo D | xcopy %FLOPDRV%\charsets %SYBHOME%\charsets /s /e /v > NUL:
- if not errorlevel 0 goto cpflop1err
-
- goto printcompletion
- goto exit
-
- :printusage
- echo.
- echo Usage: sybinst [flpy drv to copy from] [SYBASE home dir to copy to]
- echo i.e. SYBINST A: F:\SYBASE
- echo.
- goto exit
-
- :printabort
- echo.
- echo Aborting manual copying of NetWare SQL server files...
- echo.
- goto exit
-
- :printcompletion
- echo.
- echo Successfully completed the manual copying of NetWare SQL server files...
- echo.
- goto exit
-
- :askoverwrite
- echo.
- echo The SYBASE home directory %SYBHOME% already exists.
- echo If you don't want to overwrite what is in %SYBHOME%,
- echo press CONTROL-C NOW to break out of this installer or
- pause
- goto cpflopstart
-
- :mkdirerr
- echo.
- echo Error: Unable to create a directory.
- echo Check if the volume/drive that the SYBASE home directory exists and/or you
- echo have sufficient permissions to create a directory/file there.
- echo.
- goto printabort
-
- :cpfloperr
- echo Check if the NetWare SQL server diskette is correctly echo inserted in the
- echo diskette drive %FLOPDRV%.
- echo.
- goto printabort
-
- :cpflop1err
- echo.
- echo Error: Unable to read diskette #1 from drive %FLOPDRV%.
- goto cpfloperr
-
- :cpflop2err
- echo.
- echo Error: Unable to read diskette #2 from drive %FLOPDRV%.
- goto cpfloperr
-
- :cpflop3err
- echo.
- echo Error: Unable to read diskette #3 from drive %FLOPDRV%.
- goto cpfloperr
-
- :cpflop4err
- echo.
- echo Error: Unable to read diskette #4 from drive %FLOPDRV%.
- goto cpfloperr
-
- :cpflop5err
- echo.
- echo Error: Unable to read diskette #5 from drive %FLOPDRV%.
- goto cpfloperr
-
- :reins1flop
- echo.
- echo Error: Diskette currently in drive %FLOPDRV% is NOT the NetWare SQL server diskette #1.
- echo Insert correct diskette and
- pause
- goto cpflop1
-
- :reins2flop
- echo.
- echo Error: Diskette currently in drive %FLOPDRV% is NOT the NetWare SQL server diskette #2.
- echo Insert correct diskette and
- pause
- goto cpflop2
-
- :reins3flop
- echo.
- echo Error: Diskette currently in drive %FLOPDRV% is NOT the NetWare SQL server diskette #3.
- echo Insert correct diskette and
- pause
- goto cpflop3
-
- :reins4flop
- echo.
- echo Error: Diskette currently in drive %FLOPDRV% is NOT the NetWare SQL server diskette #4.
- echo Insert correct diskette and
- pause
- goto cpflop4
-
- :reins5flop
- echo.
- echo Error: Diskette currently in drive %FLOPDRV% is NOT the NetWare SQL server diskette #5.
- echo Insert correct diskette and
- pause
- goto cpflop5
-
- :exit
- exit
-