home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0010 - 0019 / ibm0010-0019 / ibm0010.tar / ibm0010 / MBRETJR1.ZIP / 1 / VINSTALL.BAT < prev   
Encoding:
DOS Batch File  |  1988-07-07  |  961 b   |  28 lines

  1. echo off
  2. rem **********************************************
  3. rem *  To Install, log on to drive containing    *
  4. rem *    Product diskette and type:              *
  5. rem *      INSTALL from: to:                     *
  6. rem *  where:                                    *
  7. rem *    "from:" is the floppy drive-ID of the   *
  8. rem *            Product diskette.               *
  9. rem *    "to:"   is the drive-ID of where to     *
  10. rem *            install the Product programs.   *
  11. rem **********************************************
  12.        if "%1" == "" goto err1
  13.         echo Place Disk # 2 in Drive
  14.         pause
  15.        if "%2" == "" goto err1
  16.        echo Performing Installation, Part 2
  17.        copy %1*.* %2\retail\1
  18.        if errorlevel 1 goto err2
  19.        update
  20.        retail
  21.        goto end
  22. :err1
  23.        echo 'From:' or 'To:' Drive-ID Parameters missing or invalid.
  24.        goto end
  25. :err2
  26.        echo Installation Ended due to Error(s).
  27. :end
  28.