home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
-
- If %1! == ! goto startover
- If %2! == ! goto startover
-
- Echo This batch file will install the Catalog-on-a-Disk to the hard drive
- echo specified. After installation type CAT then press RETURN to start the
- echo program.
- echo.
-
- echo.
- echo Copying files from %1 to %2\CAT
- echo.
- echo Press ENTER to continue
- echo or press CTRL-C to cancel
- pause > nul
- echo.
- echo.
- cls
-
- copy cpy.bat %2\
- %2
- cpy %1 %2
-
-
- goto finish
-
- :startover
- echo You must enter a SOURCE DRIVE and a DESTINATION DRIVE when starting
- echo this batch file.
- echo.
- echo Example: INSTALL A: C:
- echo.
- echo.
-
- :finish
- echo.
- echo.
-