bat 选项之修改ip的脚本代码(让用户可以选择操作并进行判断执行)
代码如下:
@echo off
title ip设置器
:start
cls
color 2f
:: 使用color命令对控制台输出颜色进行更改
mode con cols=56 lines=20
:: mode语句为设定窗体的宽和高
:sc_main
echo -------------------------------------------
echo.&echo.
echo 0.192.168.0.99 & echo.
echo 1.192.168.1.99 & echo.
echo q.退出 & echo.&echo.&echo.&echo.&echo.&echo.
set "select="
set/p select= 输入数字,按回车继续 :
if "%select%"=="0" (goto sc_ip0)
if "%select%"=="1" (goto sc_ip1)
if "%select%"=="q" (goto sc_exit)
:sc_exit
exit
goto :eof
:sc_ip0
cls
echo 正在设置中,请稍候
netsh interface ip set address "本地连接" static 192.168.0.99 255.255.255.0 192.168.0.1 1
netsh interface ip set dns "本地连接" static 192.168.0.1 primary
echo 设置成功 192.168.0.99
pause >nul
goto sc_main
:sc_ip1
cls
echo 正在设置中,请稍候
netsh interface ip set address "本地连接" static 192.168.1.99 255.255.255.0 192.168.1.1 1
netsh interface ip set dns "本地连接" static 192.168.1.1 primary
echo 设置成功 192.168.1.99
pause >nul
goto sc_main
netsh interface ip set address "本地连接" static 192.168.1.99 255.255.255.0 192.168.1.1 1
netsh interface ip set dns "本地连接" static 192.168.1.1 primary
第一行是设置ip的ip 子网掩码 网关
第二行设置的是dns的ip,如果你知道外网的dns ip就可以不用设置这个了,第一行就可以了。
一般情况下dns设置为网关ip就可以了。
上一篇: DOS下内存的配置