home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / comm / msgfax12.zip / SENDFAX.BAT < prev   
DOS Batch File  |  1993-05-03  |  335b  |  12 lines

  1. @echo off
  2. rem THIS IS A SAMPLE BATCH FILE FOR USE WITH A ZYXEL SYSTEM.
  3. rem  ===  Check if the file is there
  4. if not exist %1 goto exit
  5. rem  ===  Run the fax send software (%1=FAX FILENAME %2=FAX PHONENUMBER)
  6.  
  7. ZFAX 1 %1 %2
  8.  
  9. rem  ===  Check to see if the fax software sent it and delete if so.
  10. if not errorlevel 1 del %1
  11. :exit
  12.