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

  1. if "%1" == "" goto NoSource
  2. if "%2" == "" goto NoDest
  3. copy %1\hjpro.inf %2
  4. copy %1\infparse.exe %2
  5. rem infparse reads each line in the inf file and expands every file
  6. %2\infparse %2\hjpro.inf %1 %2
  7. ren %2\install.exe hjsetup.exe
  8. echo.
  9. echo Now start Windows.  From the Program Manager choose File/Run.  Enter:
  10. echo %2\_isi_stf.exe
  11. echo Choose Network Install and Workstation Install to complete the installation.
  12. goto End
  13. :NoSource
  14. :NoDest
  15. echo USAGE: ALTINST source destination
  16. echo.
  17. echo        AltInst is the alternate installation utility from Inset Systems.
  18. echo AltInst will copy and expand the files from your distribution diskettes to
  19. echo the destination directory.
  20. echo.
  21. echo source        -- is the disk drive you are installing from i.e. B:
  22. echo destination   -- is the drive and directory to install to i.e. C:\HJPRO
  23. :End
  24.