home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
pibterm
/
pibt41e3.arc
/
DELPHI.SCR
< prev
next >
Wrap
Text File
|
1988-02-26
|
2KB
|
38 lines
***************************************************************************
* D E L P H I . S C R --- Script for logging into DELPHI system *
***************************************************************************
* *
* Script: Delphi.Scr *
* *
* Purpose: Connects to Delphi system. Designed for use as *
* attached script in dialing directory. *
* *
* Invocation: *
* *
* Execute "Delphi" *
* *
* Remarks: *
* *
* Change the values of "username" and "password" to those of your *
* own Delphi account. *
* *
***************************************************************************
*
* Wait a bit for network to wake up.
Suspend 300
* Indicate we want to login.
SText "A"
* Wait for login notice.
WaitString "please log in:"
* Indicate we want Delphi system.
SText "DELPHI|"
* Wait for Username prompt.
WaitString "Username:"
* Send username -- PUT YOURS HERE.
SText "username|"
* Wait for Password prompt.
WaitString "Password:"
* Send password -- PUT YOURS HERE.
SText "password|"
*