开门见山吧! 第一个批处理- @echo off
- cls
- color 0A
- Echo *******************************************************************************
- Echo 正在為您連接網絡,請稍候...
- Echo *******************************************************************************
- netsh interface ip set address name="本地连接" source=dhcp
- netsh interface ip delete dns "本地连接" all
- ipconfig /flushdns
- ipconfig /all
- start C:\Progra~1\Intern~1\iexplore http://210.21.127.228/
- exit
复制代码 第二个批处理- @echo off
- set /a num=%random%%%254+1
- set ipa=192.168.1.%num%
- netsh interface ip set address name="本地连接" source=static addr=%ipa% mask=255.255.255.0 gateway=192.168.1.1 gwmetric=1
- netsh interface ip set dns name="本地连接" source=static addr=202.103.224.68
- netsh interface ip add dns name="本地连接" addr=192.168.1.1 index=2
复制代码
第三个 ,加多一个选项吧,就是退出,
[code]exit[code]
请问怎么才能把它集成一个批处理?
[ 本帖最后由 zjhuzi 于 2008-12-8 21:32 编辑 ] |