home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD-ROM Magazin 1996 March
/
CD_03_96.BIN
/
direct
/
qsockpro.qip
/
POP_BRNW.MPS
< prev
next >
Wrap
Text File
|
1996-02-14
|
772b
|
43 lines
# Point Of Presence Braunschweig Germany VJPPP&PPP login
# 13/09/95 BC
String username
String password
# Trace on
SetTimeout 60
CfgGetValue "Username" username
if result = 0 then
GetInput "Enter your user name" username
if result = 0 then
Print "Warning, no username entered"
else
Print "Username set to ["; username; "]"
endif
endif
CfgGetValue "Password" password
if result = 0 then
GetPassword "Enter your password" password
if result = 0 then
Print "Warning, no password entered"
else
Print "Password set."
endif
endif
CommWaitFor "sername:"
CommSend username
CommSend "%r"
CommWaitFor "assword:"
CommSend password
CommSend "%r"
Print "Framing is PPP"
END