home *** CD-ROM | disk | FTP | other *** search
- echo off
- rem **********************************************
- rem * To Install, log on to drive containing *
- rem * Product diskette and type: *
- rem * INSTALL from: to: *
- rem * where: *
- rem * "from:" is the floppy drive-ID of the *
- rem * Product diskette. *
- rem * "to:" is the drive-ID of where to *
- rem * install the Product programs. *
- rem **********************************************
- if "%1" == "" goto err1
- echo Place Disk # 2 in Drive
- pause
- if "%2" == "" goto err1
- echo Performing Installation, Part 2
- copy %1*.* %2\retail\1
- if errorlevel 1 goto err2
- update
- retail
- goto end
- :err1
- echo 'From:' or 'To:' Drive-ID Parameters missing or invalid.
- goto end
- :err2
- echo Installation Ended due to Error(s).
- :end