@echo off
echo -----------------------------------------------
echo 網(wǎng)絡(luò)切換操作
:Step1
echo -----------------------------------------------
echo 請選擇:
set /p choice=1、靜態(tài)IP? ? 2焕梅、動態(tài)獲取? ? 3担钮、退出 :
:Step1_Next
if %choice%==1 goto network1
if %choice%==2 goto network2
if %choice%==3 goto end
else goto end
:network1
netsh interface ip set address name="本地鏈接" static 192.168.1.55 255.255.255.0 192.168.1.1 >nul
netsh interface ip add dns "本地鏈接" 202.98.96.68 index=1 >nul
netsh interface ip add dns "本地鏈接" 61.139.2.69 index=2 >nul
goto setend
:network2
netsh interface ip set address name="本地鏈接" source=dhcp >nul
netsh interface ip set dns name="本地鏈接" source=dhcp >nul
goto setend
:setend
echo IP地址已經(jīng)設(shè)定修改完畢署惯,按任意鍵關(guān)閉此窗口
pause >nul
:end