;Sample DUN Script for Windows 95 Dial-up Networking ;Written by Steve Jenkins of the Windows 95 InterNetworking Headquarters ;http://www.windows95.com ;Specifically for use with Brigham Young University's CougarNet Remote PPP ;Edit the appropriate sections for connection with your ISP ;This will begin the script proc main ;Enable the following to delay for 3 seconds first to ;allow host time to send initial characters (not needed by many ISPs). ;delay 3 ;Sometimes, ISP's need a carriage return to initiate the login process. ;If your ISP requires this, uncomment the following line: ;transmit "^M" ;Wait for the login prompt before entering the user ID and carriage return ;(I left off the first letter since login is case-sensitive) ;The $USERID variable is taken from the dial-up connection dialog box waitfor "ogin:" transmit $USERID transmit "^M" ;Enter your password (I left off the first letter since login is case-sensitive) ;and send a carriage return waitfor "assword:" transmit $PASSWORD transmit "^M" ;Finish the script! I hope it works for you! endproc