home *** CD-ROM | disk | FTP | other *** search
- :My system defaults to echo off, so I do not use an echo statement. Alter
- :this first line to meet your own needs. Telix passes the filename to be
- :transferred as %3 - therefore this bat file will handle batch down loads
- :with JModem by making use of the Dos "Shift" command and "goto" statements
- :After you make your alterations to this file you can remove this note.
-
- CLS
- :BEGIN
- IF "%3"=="" GOTO :EXIT
- GOTO START
- :START
- d:ptimer.com /mode=start
- JMODEM.COM S2 %3 %4 %5 %6 %7 %8 %9
- if errorlevel 1 goto :skip
- d:ptimer.com /mode=send/port=2/rate=2400/protocol=jmodem/file=%3
- :skip
- SHIFT
- GOTO BEGIN
- :EXIT