home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / busi / appt3_90.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1989-10-09  |  704b  |  26 lines

  1. echo off
  2. cls
  3. if "%1" == "" goto verror
  4. if "%2" == "" goto verror
  5. if "%3" == "" goto verror
  6. %3
  7. md %2
  8. cd %2
  9. echo   Working ... 
  10. copy %1\*.*
  11. goto alldone
  12. :verror
  13.   echo             ╔═══════════════════════════════════════════╗
  14.   echo             ║      The correct command syntax is:       ║
  15.   echo             ║       INSTALL d1: Progname d2:            ║
  16.   echo             ║      d1 = Where to install from ie A:     ║
  17.   echo             ║      d2 = Where to install to ie C:       ║
  18.   echo             ╚═══════════════════════════════════════════╝
  19.   goto end
  20. :alldone
  21. cls
  22. echo.
  23. echo  *****************Installation Complete********************
  24. echo
  25. :end
  26.