home *** CD-ROM | disk | FTP | other *** search
/ Win 3.11 Apps / win311aps.iso / HJPW / ALTINST.BAT < prev    next >
DOS Batch File  |  1995-05-15  |  551b  |  19 lines

  1. echo off
  2. if "%1" == "" goto NoSource
  3. if "%2" == "" goto NoDest
  4. md %2
  5. copy %1\altinst2.bat %2
  6. %2\altinst2 %1 %2
  7. goto End
  8. :NoSource
  9. :NoDest
  10. echo USAGE: ALTINST source destination
  11. echo.
  12. echo        AltInst is the alternate installation utility from Inset Systems.
  13. echo AltInst will copy and expand the files from your distribution diskettes to
  14. echo the destination directory.
  15. echo.
  16. echo source        -- is the disk drive you are installing from i.e. B:
  17. echo destination   -- is the drive and directory to install to i.e. C:\HJPRO
  18. :End
  19.