В принципе тема давно избитая и на форму довольно много таких вопросов.
Код:
echo off
ping ya.ru -n 1
if %errorlevel%==1 goto ping2
if %errorlevel%==0 exit /b
:ping2
echo net ping ya.ru
ping google.com -n 1
if %errorlevel%==1 goto ping3
if %errorlevel%==0 exit /b
:ping3
echo net ping google
ping mail.ru -n 1
if %errorlevel%==1 goto InterfaceON
if %errorlevel%==0 exit /b
:InterfaceON
netsh interface set interface "NAME1" disable
netsh interface set interface "NAME2" enable
Вот как то так.