home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / wp / blmagic.zip / MAGREAD.ZIP / FLOPPY.BAT < prev    next >
DOS Batch File  |  1988-10-27  |  2KB  |  57 lines

  1. ECHO off
  2. if x%1==x goto missing
  3.  
  4. ECHO -
  5. ECHO   This batch file will install MAGREAD on your two (2) floopies.
  6. ECHO -
  7. ECHO   The MAGREAD.ARC disk should be in drive %1
  8. ECHO -
  9. ECHO   The first of the two floppies should be in drive %2
  10. ECHO   This first floppy will be the MAGREAD system disk.
  11. ECHO -
  12. ECHO   If you wish to abort, press CTRL-BREAK now...  Otherwise...
  13. PAUSE
  14. %2
  15. ECHO ..Copying Files From MAGREAD disk..
  16. ECHO ...Creating MAGREAD system disk...
  17. %1ARC X %1MAGREAD MAGREAD.* README. FLOPPY.INI
  18. COPY FLOPPY.INI MAGREAD.INI
  19. DEL FLOPPY.INI
  20.  
  21. ECHO ..Please switch floppies in drive %2 a this time..
  22. ECHO ..This next disk will contain the HOWTO demo..
  23. PAUSE
  24. %1ARC X %1MAGREAD *.MGR *.MAG
  25.  
  26. ECHO ..Installation Complete..
  27. GOTO finished
  28.  
  29. : missing
  30. ECHO -
  31. ECHO - The format for using FLOPPY.BAT is
  32. ECHO -
  33. ECHO -  FLOPPY source.drive destination.drive
  34. ECHO -
  35. ECHO - an example would be...
  36. ECHO -
  37. ECHO -  FLOPPY A: B:
  38. ECHO -
  39. ECHO - and in this case you would put the MAGREAD.ARC disk in drive A: and put the
  40. ECHO - first of two (2) formated 360K floppy disks in drive B:
  41. GOTO Done
  42.  
  43. : finished
  44. ECHO -
  45. ECHO -
  46. ECHO         To Read a Sample Hypertext File, Type:
  47. ECHO -
  48. ECHO                   MAGREAD HOWTO
  49. ECHO -
  50. ECHO    Some helpful hints can be found in MAGREAD.DOC and README.
  51. ECHO    These files can be Displayed with the DOS TYPE command.
  52. ECHO -
  53. ECHO    To see these instructions again use the DOS TYPE command on the file
  54. ECHO    FLOPPY.BAT.  You may now delete the MAGREAD.ARC and .BAT files off
  55. ECHO    your original floppy.
  56. ECHO                                           THANK YOU.
  57. : Done