@echo off GOTO EndComment This bat-file is a keep alive script that pings eg googe.co.za every X seconds to keep a connection alive. Designed with the Virgin Mobile GPRS user in mind. :D Written by Ld13 http://www.wolfie.za.org/myadsl/ 14/06/2007 :EndComment @echo on @echo ======================= @echo Keep Alive Script v.0.1 @echo by Ld13 @echo ======================= @echo. @echo Press CTRL + C to Stop the Keep Alive Script @echo. @echo. @echo off :1 @echo Keeping Alive PING 1.1.1.1 -n 1 -w 30000 >NUL REM 1000 = 1 second | eg 10000=10 seconds PING www.google.co.za -n 1 >NUL REM you can change the server to be pinged, here GOTO 1