分类: 系统运维
2010-05-06 16:58:15
@echo off
echo 请输入你要选择的网段,2为192.168.2.0/24网段,3为192.168.3.0/24网段!
set /p Enter=请输入:
if "%Enter%"=="2" goto :setipaddress2
if "%Enter%"=="3" goto :setipaddress3
:setipaddress2
netsh interface ip set address "本地连接" static 192.168.2.45 255.255.255.0 192.168.2.1 1
goto :end
:setipaddress3
netsh interface ip set address "本地连接" static 192.168.3.45 255.255.255.0 192.168.3.1 1
goto :end
:end
echo 操作成功!
ipconfig
pause
将上面的代码copy到txt文档中,重命名为xxx.bat,双击执行即可!