3-tag:General-250px-related-5385949187566471317
Skip to main content

Connect to the Internet using batch file extension

Copy this text or write this text in a notepad or any text editor,then save this file using a batch file extension EX-connect.bat

@ECHO OFF

:loop
Echo Trying to Dial your connection.........
rasdial Connectionname username password
if NOT %ERRORLEVEL% ==0 goto failed

Exit
:failed
cls

Echo Failed to connect....will retry

goto loop


Note-Provide the connection name,username & password before saving.I'm sure this will definitely work

Comments