home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 June
/
PCWorld_1998-06_cd.bin
/
software
/
sharware
/
komunik
/
QMODEM
/
ALLSCRPT.ZIP
/
GENIE.SCR
< prev
next >
Wrap
Text File
|
1986-02-22
|
1KB
|
47 lines
.THIS IS A STAND-ALONE SCRIPT; USE ALT-F TO RUN IT
.This script accesses a free online demo of GENIE via a toll-free 800#
.using the Hayes modem dialing command. You must run this script using
.the QMODEM Alt-F command, since it includes a phone number.
.As of 2/17/86: GENIE sign-up fee is 18.00. The non-prime access fees
.(if you sign up) are 5.00/hr @ 300/1200 baud or 15.00/hr @ 2400 baud
.If you already use GENIE, you can modify this script for normal access
.by changing linking to a phone directory entry or changing the phone number,
.and changing the Account# and Password to your own
NOTE ** CALLING GENIE (GENERAL ELECTRIC NETWORK FOR INFORMATION EXCHANGE) **
.Provide your own echo and use xon/xoff; set TIMEOUT to 60 seconds
TURNON ECHO
TURNOFF LINEFEED
.Goto the label FAILED if there are problems
TIMEOUT 60 FAILED
.Set 7 bit word, even parity, 1 stop bit, and 1200 baud (D) or 300 baud (A)
SETCOMM D
.Call the toll-free 800#, using Hayes command ATDT
SEND "ATDT 1-800-638-8369{"
.Wait until modem returns CONNECT
WAITFOR "CONNECT"
.Send the three H's and CR to establish 'handshake' with GENIE
SEND "HHH{"
.Wait for the first GENIE prompt
WAITFOR "U#="
.Send Demo Account# (5JM11999) & Demo Password (GENIE)
SEND "5JM11999,GENIE{"
RETURN
.In case of failure (TIMEOUT)...
FAILED:
** LOGON TO GENIE FAILED **
RETURN