An MS-DOS Kermit script program for dialing the BOCA 14.4 (V.32bis)

output ATQ0V1\13                ; Enable word result codes
output AT E1 W1 &D2 S95=47 X4\13 ; Echoing, result codes, etc.
output AT F1 S37=11 N1\13       ; Start modulation speed negotiation at V32bis
output AT &K3\13                ; RTS/CTS hardware flow control
output AT S82=128\13            ; Make modem ignore BREAK
output AT &Q5 S36=7 S46=138\13  ; Enable error correction & compression
output AT \{92}N3 S48=7\13      ; Fix speed, start EC negotiation with LAPM
output AT S38=1\13

An MS-DOS Kermit script program for dialing the Digicom Connection 144+
; (previously known as the Connection 96+; there is no functional difference)
; 14400 modem

output ATQ0V1\13                ; Enable word result codes
output ATE1W1X4&C1&D2\13
output AT&K3\13                 ; RTS/CTS hardware flow control
output AT\92N5\13               ; Auto-reliable V.42, and V.42bis enabled
output AT&V\13                  ; Show modem configuration
output ATI3\13                  ; Show modem software version
  
n MS-DOS Kermit script program for dialing the AT&T / Paradyne Dataport
; 14400 and Express modems, internal or external

output ATQ0V1\13		; Enable word result codes
output AT \92Q3\13		; RTS/CTS hardware flow control
output AT %B14400 S78=0\13      ; Modulation = V.32bis with fallback
output AT \92N7%C1\13		; Compression and EC enabled
output AT \92K5\13		; Make modem pass BREAK transparently
output ATD\%1\13                ; Dial the number.
  
 MS-DOS Kermit script program for dialing the Dynalink 1414 modem


output ATQ0V1\13, -
output AT &C1 &D2 E1 W1 X4 S95=46\13  ; Init string
output AT S37=11 N1\13          ; Start modulation speed negotiation at 14400
output AT &K3\13                ; Enable RTS/CTS hardware flow control
output AT \92K5\13              ; Make modem pass BREAK transparently
output AT &Q5 S36=7 S38=1 S46=138 S48=7\13
output AT L1\13         ; Add M0 to shut down the speaker
output AT&V\13
output ATS86\63\13

 MS-DOS Kermit script program for dialing the Motorola UDS FasTalk II

 output ATQ0V1\13, -
output AT E1&C1&D2&S0X4\92V1\92E0\13	; Echoing, result codes, etc.
output AT \92G1\92Q3\13
output AT \92K5\13
output AT \92N6\92J0%C1\13

n MS-DOS Kermit script program for dialing Hayes 2400 Smartmodems and
; compatibles.  Should also work with Hayes 1200, and ROLMphone 244PCs.

   output ATQ0V1X1\13
output ATQ0V1X1\13              ; Send AT, use word result codes.
output ATD\%1\13                ; Dial the number (ATDT or ATDP)

An MS-DOS Kermit script program for dialing the Intel High-Speed Internal
; Faxmodem

 output ATQ0V1\13, -
output AT E1&C1&D2&S0X4\92V2\13 ; Echoing, result codes, etc.
output AT \92G0\92Q3\13		; Maybe substitute G1 for G0?
output AT Y0\92K1\13
output AT \92J0\92N3%C1"H3\13

 MS-DOS Kermit script program is for dialing Penril Alliance V.32
; modems and compatibles.  It will probably work with the V.32bis version of
; this modem, but this has not been tested.  The Penril, like most V.32
; modems, is Hayes-compatible up to the point that one starts dealing with
; buffering, error-correction, and compression modes.


msmpenril.scr:output AT			; Very loud speaker, turn it down

n MS-DOS Kermit script program for dialing the Practical Peripherals 14400
; FXMT or FXSA, PM9600FXMT, PM9600SA, or PM9600 modem

output ATQ0V1\13, -
output AT E1 W1 S95=47 &D2 X4\13 ; Set up echoing, result codes, etc.
output ATI3\13				; Issue model query
output AT \m(_modcmd)\13	; Issue the modulation setup command
output AT &K3\13		; Enable RTS/CTS hardware flow control
output AT S82=128\13		; Make modem ignore BREAK
output AT &Q5 S36=7 S46=2\13	; Enable error correction & compression

 MS-DOS Kermit script program for dialing Telebit QBlazer modems.
; Set up QBlazer for compression, error correction, all types of fallback,
; RTS/CTS flow control, fixed interface speed of 38400


 output ATQ0\13, -
;;output AT&F\13	; Restore factory settings (no, this changes speed!)
output AT E1 Q0 V1 &D2 S59=15 X4\13  ; Set echo and response modes.
output ATS51=\m(s51)\13
output AT\13
output AT S58=2 S68=255 &R3\13	; Tell modem to use RTS/CTS
output AT S50=0 S94=1\13	; Enable modulation speed negotiation
output AT S60=0 S61=0 S63=0\13	; Make modem ignore break
output AT S180=2 S181=1 S190=1\13 ; Enable error correction & compression
output AT&V\13
output ATI3\13

s MS-DOS Kermit script program is for dialing a Microcom QX/4232hs modem,
; which is a v.32(w/bis) / v.42(w/bis) MNP class *10* modem.


output ATZ\13                ; Send ATZ to reset/init the modem.
output AT\38F\13\10          ; Send AT&F, resets modem to factory defaults
output ATQ0\13\10            ; Send ATQ0, enables modem result codes
output ATT\13\10             ; then send an ATT, setting tone dialing. *!*
output AT\38C1               ; &C1 So CD follows remote carrier *FDSS


 MS-DOS Kermit script program for dialing the US Robotics Sportster or
; Courier 14400 or 28800 modem, to be used with MS-DOS Kermit 3.12 or later.
; The modem is set for RTS/CTS flow control, fixed interface speed of 57600,
; and to negotiate highest modulation, compression, with error correction
; with all types of fallback.


output ATQ0V1&S0I3\13		; Enable word result codes, turn on DSR
output AT E1 X4 &A3 &D2\13	; Set echoing, result codes, etc.
output AT&B1\13			; Fixed interface speed
output AT &H1&R2\13		; RTS/CTS hardware flow control
output AT &N0\13
output AT &K1&M4\13		; Compression and EC enabled
output AT &Y3\13		; Make modem pass BREAK transparently

n MS-DOS Kermit script program for dialing the Multitech MT1432 series


output ATQ0V1\13		; Enable word result codes
output AT E1 &Q1 X4\13		; Echoing, result codes, etc.
output AT $SB\v(speed) $MB14400\13	; Start modulation speed negotiation
output AT &E4\13		; RTS/CTS hardware flow control
output AT %E1\13		; Make modem ignore BREAK
output AT &E1 &E15 $BA0\13	; Enable error correction & compression

n MS-DOS Kermit script program for dialing Telebit T3000 and similar
; modems (T1600 and QBlazer, possibly WorldBlazer)


 output ATQ0\13, -
;;output AT&F\13	; Restore factory settings (no, this changes speed!)
output AT E1 Q0 V1 &D2 S59=15 X12\13  ; Set echo and response modes.
output ATS51=\m(s51)\13
output AT\13
output AT S58=2 S68=255 &R3\13	; Tell modem to use RTS/CTS
output AT S50=0 S94=1\13	; Enable modulation speed negotiation
output AT S60=0 S61=0 S63=0\13	; Make modem ignore break
output AT S180=2 S181=1 S190=1\13 ; Enable error correction & compression
output AT&V\13
output ATI3\13

n MS-DOS Kermit script program for dialing the MegaHertz XJack Telepath
; 14.4 PCMCIA Data/Fax Modem distributed by Gateway 2000

 output ATQ0V1\13, -
output AT &S0&C1&D0&Q1E1W1X4\13
output AT F10\{92}N3%E2\13 ; Maybe this should be \N1 to force speed buffering?
output AT &K3\{92}G1\13		; Enable RTS/CTS hardware flow control
output AT \{92}K5\13		; Make modem pass BREAK transparently
output AT &Q5 %C3 S36=7 S46=138 S48=7\13
output AT&V\13
output ATI0I3\13
output ATS86\63\13

n MS-DOS Kermit script program for dialing the Hayes ULTRA 144 modem

output ATQ0V1\13, -
output ATS87=28\13
output AT\13
output AT &D2 E1 W1 X4 S95=46\13
output AT S37=11 N1\13		; Start modulation speed negotiation at 14400
output AT &K1 &K3\13		; Enable RTS/CTS hardware flow control
output AT S82=128\13		; Make modem pass BREAK transparently
output AT &Q5 S36=7 S38=1 S46=2 S48=7\13
output AT&V\13
output ATI0\13
output ATS86\63\13

n MS-DOS Kermit script program for dialing the Hayes ULTRA 144 modem
output ATQ0V1\13, -
output ATS87=28\13
output AT\13
output AT &D2 E1 W1 X4 S95=46\13
output AT S37=11 N1\13		; Start modulation speed negotiation at 14400
output AT &K1 &K3\13		; Enable RTS/CTS hardware flow control
output AT S82=128\13		; Make modem pass BREAK transparently
output AT &Q5 S36=7 S38=1 S46=2 S48=7\13
output AT&V\13
output ATI0\13
output ATS86\63\13
Puts the VIVA 2442ef in the following modes, which this script depends upon
; for following operation:

 2442ef in the following modes, which this script depends upon
; for following operation:
; V1 Selects Long-Form verbal result codes.
; E1 Echoes back characters to host typed in command mode
; M0 Speaker always off
; N1 Permits handshaking to occur at any speed supported by both
;    modems.  Enables automode detection.
; Q0 Result codes are sent.
; X4 BUSY detect, NO DIALTONE detect, CONNECT (speed) messages displayed
; &C1 DCD On indicates presence of data carrier.
; &D2 DTR On-To-Off transition causes the modem to hangup,
;     enter the command state, and disable auto-answer
; &S0 Modem maintains DSR on at all times
; %C3 Enable both MNP5 and V.42bis Data Compression
; %D2 Sets the V.42bis dictionary size at 2048

output ATV1E1M0X4&C1&D2&S0%C3%D2%M3\13

 MS-DOS Kermit dialing script for the Wang 14/14i (internal) or
 ; 14/14e (external).

output ATQ0V1\13, -
output AT\13
output AT &D2 L1 W1 X4\13
output AT S40=234 S41=224 S95=116\13
output AT S82=128\13		; Make modem pass BREAK transparently
output AT S38=1 S46=138\13
output AT&W0&Y0\13
output ATS86?\13

;MS-DOS Kermit script program for dialing the Zoom 14400 (V.32bis)
; modem

output ATQ0V1\13                ; Enable word result codes
output AT E1 W1 &D2 S95=47 X4\13 ; Echoing, result codes, etc.
output AT S37=11 N1\13          ; Start modulation speed negotiation at V32bis
output AT &K3\13                ; RTS/CTS hardware flow control
output AT S82=128\13            ; Make modem ignore BREAK
output AT &Q5 S36=7 S46=138\13  ; Enable error correction & compression
output AT S38=1\13

; MS-DOS Kermit script program for dialing the ZyXEL 1496
; modem

output ATQ0V1\13                ; Enable word result codes
output AT E1 &D2 X5\13 ; Echoing, result codes, etc.
output AT &N0 N1\13             ; Start modulation speed negotiation at V32bis
output AT &H3\13                ; RTS/CTS hardware flow control
output AT &Y1\13            ; Make modem ignore BREAK
output AT &K4\13  ; Enable error correction & compression