原创|批处理|批处理设定IP地址与自动获取IP之间的切换

批处理设定IP地址与自动获取IP之间的切换

背景

        在办公环境中,通常,内网的IP地址是指定的,随意更改会导致上不了网或者IP地址冲突;但是当我们将办公电脑带回家中时,通常是自动获取IP地址的。手动来回更改非常麻烦,因此,我们可以实现批处理自动设定IP地址。

使用方法

将以下代码复制后,保存为*.bat批处理文件即可执行;或者新建一个记事本文件,将复制的代码粘贴进去,然后将文件名后缀改为*.bat,双击即可执行;

代码

设置本地有线连接为自动获取IP与DNS

@echo off
set AddressName="本地连接1"
title 将---%AddressName%---设置为自动获取IP与DNS 20151117 V1.0 by HRD
color e5
echo.
echo 将---%AddressName%---设置为自动获取IP与DNS 20151117 V1.0 by HRD

netsh interface ip set address name="%AddressName%" source=dhcp
netsh interface ip set dns name="%AddressName%" source=dhcp

netsh interface ip set address name="%AddressName%" source=dhcp
netsh interface ip set dns name="%AddressName%" source=dhcp

timeout 3

填写本地有线连接IP为192.168.1.75

@echo off
color e5
set AddressName="本地连接1"
set title0=本命令将自动为---%AddressName%---填写以下内容:
echo %title0%  20151117_V1.0 by HRD
title %title0%
set IP=192.168.1.75
set gateway=192.168.1.1
set MASK=255.255.255.0
set DNS1=202.96.128.33
set DNS2=202.96.128.86


echo           -----------------------------------------
echo		   	       网络设定信息
echo               %title0%
echo               网络名称:  %AddressName%
echo               IP地址:    %IP%
echo               网关:      %gateway%
echo               掩码:      %MASK%
echo               首选DNS:    %DNS1%
echo               备用DNS:    %DNS2%
echo           -----------------------------------------
echo  使用前请手动暂时关闭防火墙或者点击“允许执行”,否则可能导致设定失败!!!
echo. 
echo.
echo.
echo.
echo off
echo.
echo 请等待...

netsh interface ip set address "%AddressName%" static %IP% %MASK% %gateway%
netsh interface ip set dns "%AddressName%" static %DNS1% primary
netsh interface ip add dns "%AddressName%" %DNS2%


timeout 3

WIFI_设置自动获取IP与DNS

@echo off
set AddressName="无线网络连接"
title 将---%AddressName%---设置为自动获取IP与DNS 20151117 V1.0 by HRD
color e5
echo.
echo 将---%AddressName%---设置为自动获取IP与DNS 20151117 V1.0 by HRD

netsh interface ip set address name="%AddressName%" source=dhcp
netsh interface ip set dns name="%AddressName%" source=dhcp

netsh interface ip set address name="%AddressName%" source=dhcp
netsh interface ip set dns name="%AddressName%" source=dhcp

timeout 3

上一篇:delphi 向 TEdgeBrowser 组件中写入 Cookie 的方法


下一篇:深度理解抽象类和接口