批处理文件让Vista自动更换IP地址!

241阅读 0评论2008-09-08 Q9wFKHEBgApgMlR
分类:

 @ echo off
  rem 设置变量
  set Nic=本地连接
  rem //可以根据你的需要更改,
  set Addr=192.168.0.2
  set Mask=255.255.255.0
  set Gway=192.168.0.1
  set Dns1=61.134.1.4
  set Dns2=218.30.19.40
  rem //以上依次为IP地址、子网掩码、网关、首选DNS、备用DNS
  echo ------------------------------------------------------
  echo 正在进行IP设置,请稍等
  rem //可以根据你的需要更改
  echo. IP地址 = shy;dr%
  echo. 子网掩码 = %Mask%
  netsh interface ip set address name=%Nic% source=static addr=shy;dr% mask=%Mask% >nul
  echo. 网关 = %Gway%
  netsh interface ip set address name=%Nic% gateway=%Gway% gwmetric=1 >nul
  echo. 首选DNS = %Dns1%
  netsh interface ip set dns name=%Nic% source=static addr=%Dns1% register=PRIMARY >nul
  echo. 备用DNS = %Dns2%
  netsh interface ip add dns name=%Nic% addr=%Dns2% index=2 >nul
  echo ------------------------------------------------------  
--------------------next---------------------

上一篇:巧招为Vista系统上网冲浪提速
下一篇:在Windows系统中巧妙跟踪IP地址!