home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 15 / CD_ASCQ_15_070894.iso / vrac / zhint594.zip / BAT < prev    next >
Text File  |  1994-05-06  |  1KB  |  37 lines

  1. 5-2-94                       Bat files
  2.  
  3.      A bat or batch file  is nothing but an ASCII (plain text) list of  Dos
  4. commands.  Anything  you can type and run on the computer can be in  a  BAT
  5. file.   You can use an ASCII (or word proc TEXT mode) to edit the  file  or
  6. create one right from the Dos prompt.
  7.  
  8. C:\>copy con pro.bat     (type at the C:\>  dos prompt)
  9.  
  10. cd\procomm               (type this line)
  11. procomm                  (type next line)
  12. xxx                      (next line...)
  13. ^Z  [enter]              (press <Ctrl-Z> when finished, then [Enter]
  14.  
  15. When you type PRO it will execute the PRO.BAT.  If you look at (or  create)
  16. this in an editor you'll see:
  17.  
  18. cd\procomm
  19. procomm
  20. xxx
  21.  
  22. A good use is to load then unload FAX TSRs. Example w/ MTEZ
  23.  
  24. faxman              (loads fax TSR)
  25. popprint            (load capture)
  26. WP                  (load WP so you can write & send fax)
  27. popprint /r         (remove capture)
  28. faxman /r           (remove fax TSR)
  29.  
  30. You could just have two bat files, on to load, one to unload.
  31.  
  32.                                         Don Hinds - Zoom Tech
  33. ##include=c:\text\signa.tif
  34.  
  35.  
  36.  
  37.