home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / private / storm611.zip / HINSTALL.BAT < prev    next >
DOS Batch File  |  1991-07-24  |  935b  |  41 lines

  1. echo off
  2. cls
  3. echo.
  4. echo STORM Hard Disk Install
  5. if $$%1% == $$A: GOTO sourceok
  6. if $$%1% == $$B: GOTO sourceok
  7. if $$%1% == $$a: GOTO sourceok
  8. if $$%1% == $$b: GOTO sourceok
  9. echo Error - no source disk identified.
  10. goto badpar1
  11. :sourceok
  12. if $$%2% == $$  GOTO badpar2
  13. goto continue
  14. :badpar2
  15. echo Error - no destination disk identified.
  16. :badpar1
  17. echo.
  18. echo Please use the following syntax for installing to the hard disk:
  19. echo     HINSTALL [SOURCE FLOPPY DISK]  [DESTINATION HARD DISK]
  20. echo.
  21. echo For example:
  22. echo     HINSTALL A: C:
  23. goto done
  24. :continue
  25. %2
  26. cd\
  27. echo Making a subdirectory called %2\STORM
  28. mkdir storm > nul:
  29. cd storm
  30. echo Copying the storm files into %2\STORM. Please wait....
  31. copy %1*.* *.* > nul:
  32. COPY STORM61H.DFT STORM61.DFT >nul:
  33. del storm61h.dft  > Nul:
  34. del HINSTALL.BAT > NUL:
  35. echo.
  36. echo Finished.
  37. echo.
  38. echo.
  39. echo To run STORM, Type STORM from the %2\STORM directory.
  40. :done
  41.