熱點推薦:
您现在的位置: 電腦知識網 >> 操作系統 >> Windows系統管理 >> 正文

wind7批處理設置IP(腳本)

2022-06-13   來源: Windows系統管理 

  wind批處理設置IP(腳本)

  說明在xxxx處填上自己的IP地址

  保存成“bat”文件以管理員身份運行即可

  代碼如下

  @echo off

  :main

  cls

  echo 請按提示操作

  echo

  echo STIHUST

  echo DianHUST

  echo DHCP

  echo Exit

  echo

  set /p choice= Input a number:

  echo

  if "%choice%"=="" goto ip_STI

  if "%choice%"=="" goto ip_Dian

  if "%choice%"=="" goto ip_DHCP

  if "%choice%"=="" goto ip_Exit

  goto main

  :ip_STI

  echo IP自動設置中

  echo

  echo 更新IP及子網掩碼

  netsh interface ip set address name="本地連接" source=static addr=xxxx mask=xxxx gateway=xxxx gwmetric=

  echo 更新DNS服務器

  netsh interface ip set dns name="本地連接" source=static addr=xxxx register=PRIMARY

  netsh interface ip add dns name="本地連接" addr=xxxx

  echo 設置完成

  pause

  exit

  if errorlevel goto main

  if errorlevel goto end

  :ip_Dian

  echo IP自動設置中

  echo

  echo 更新IP及子網掩碼

  netsh interface ip set address name="本地連接" source=static addr=xxxx mask=xxxx gateway=xxxx gwmetric=

  echo 更新DNS服務器

  netsh interface ip set dns name="本地連接" source=static addr=xxxx register=PRIMARY

  netsh interface ip add dns name="本地連接" addr=xxxx

  echo 設置完成

  pause

  exit

  if errorlevel goto main

  if errorlevel goto end

  :ip_DHCP

  netsh interface ip set address name="本地連接" source=dhcp

  netsh interface ip set dns name="本地連接" source=dhcp

  netsh interface ip set wins name="本地連接" source=dhcp

  echo 設置完成

  pause

  exit

  if errorlevel goto main

  if errorlevel goto end

  :ip_Exit

  exit


From:http://tw.wingwit.com/Article/os/xtgl/201311/9887.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.