home *** CD-ROM | disk | FTP | other *** search
/ Best Objectech Shareware Selections / UNTITLED.iso / boss / comm / misc / 005 / dsz-d.bat < prev    next >
Encoding:
DOS Batch File  |  1991-09-19  |  2.4 KB  |  44 lines

  1. Echo off
  2. rem  This is an example of a BAT to use in one of Intellicomm's external
  3. rem  protocol entries.  It is set up for a Zmodem receive using the DSZ
  4. rem  external protocol program, by Chuck Forsberg (Shareware, available on
  5. rem  most BBS's).  This is an EXAMPLE ONLY and may or may not work with your
  6. rem  modem.  If you have problems please refer to the DSZ documentation.
  7. rem
  8. rem  TIP:  If you prefer using DSZ Zmodem rather than Intellicomm's internal
  9. rem  Zmodem, you should consider changing the 'Auto-Zmodem Protocol' to this
  10. rem  external protocol.  This way Icom will automatically call DSZ-Zmodem 
  11. rem  rather than using its internal Zmodem when an auto-Zmodem download is
  12. rem  detected.  See the Intellicomm Main Setup/File screen and select the
  13. rem  Auto-Zmodem protocol item if you don't understand.  You may tell Icom
  14. rem  to run ANY protocol when an auto-Zmodem download is detected.
  15. rem
  16. rem  Parameters Passed from Intellicomm:
  17. rem
  18. rem   %1=baud %2=port %3=-CDSlog %4=fspec [or @d:list if File Picker was used]
  19. rem
  20. rem  The -CDS switch points to Intellicomm's Call Data Standard format
  21. rem  Usage Log, if the Log is open when this BAT is called.  Any program
  22. rem  that follows the CDS standard can stamp Icom's Log to keep your records
  23. rem  in the same place, and in the same format.  In this way Log files can
  24. rem  be analyzed by Usage Log analyzers that understand the CDS standard, and
  25. rem  external file transfers will be accounted for in the report.
  26. rem  The -CDS switch is specified in the Call Data Standard, so any program
  27. rem  that follows the standard will be expecting it on its own command
  28. rem  line.  Just use %3 to pass it.
  29. rem
  30. rem  *NOTE:*  You -must- have DSZ place files in your Icom Download Directory
  31. rem  (defined in the Intellicomm Main Setup) during automated downloads, or it
  32. rem  will think the transfer was unsuccessful and will attempt to download the
  33. rem  same files after the transfer completes.  The CD \ICOM\GET below should
  34. rem  either be changed to the proper directory (if evaluating DSZ) or you
  35. rem  should add your download directory to the END of the DSZ line below
  36. rem  after the -mrr switch... specify the FULL path C:\ICOM\GET, etc.
  37. rem
  38. rem  If DSZ is not on your DOS PATH you must precede the DSZ command with
  39. rem  the proper pathname.  E.g.  C:\UTIL\DSZ port ...
  40. rem
  41. cd \ICOM\GET
  42. DSZ port %2 speed %1 ha on rz -mrr
  43. cd..
  44.