Windows下通过脚本快速修改IP地址

简介: Windows下通过脚本快速修改IP地址 如果通过Windows的网络属性修改Ip/网关,真是太麻烦了。 经常要切换ip,所以我写了两个脚本:c:\办公室.

Windows下通过脚本快速修改IP地址

如果通过Windows的网络属性修改Ip/网关,真是太麻烦了。
经常要切换ip,所以我写了两个脚本:

c:\办公室.bat
netsh interface ip set address "以太网" static 192.168.1.234 255.255.255.0 192.168.1.1 1

c:\家里
netsh interface ip set address "以太网" static 172.16.1.220 255.255.255.0 172.16.1.254 1

这样就可以设置IP/Mask/GateWay了,netsh命令真方便!

添加多个DNS服务器方法:

netsh interface ip add dns name = "以太网" addr = 202.101.224.68
netsh interface ip add dns name = "以太网" addr = 202.101.224.69
netsh interface ip add dns name = "以太网" addr = 202.96.128.68
netsh interface ip add dns name = "以太网" addr = 202.96.128.86


清空DNS服务器的方法:

rem 清空DNS
netsh interface ip set dns name = "以太网" static addr = none 

使用dhcp自动分配ip的快捷netsh命令:

netsh interface ip set address name="以太网" source=dhcp


为一个网络连接设置二个或多个IP地址:

netsh interface ip set address name="以太网" source=static addr=192.168.1.23 mask=255.255.255.0 gateway=192.168.1.1
netsh interface ip add address name="以太网" addr=10.2.2.5 mask=255.255.255.0
netsh interface ip add address name="以太网" addr=192.168.5.33 mask=255.255.255.0


目录
相关文章
|
30天前
|
监控 关系型数据库 MySQL
PowerShell 脚本编写 :自动化Windows 开发工作流程
PowerShell 脚本编写 :自动化Windows 开发工作流程
26 0
|
2月前
|
Python Windows
python之windows脚本启动bat
python之windows脚本启动bat
|
3月前
|
安全 Shell Windows
记windows自定义bat脚本自启动
【8月更文挑战第27天】在Windows系统中,可让自定义bat脚本自启动的方法有两种:一是利用“启动”文件夹,通过创建bat脚本的快捷方式并将其放置于该文件夹;二是使用任务计划程序,创建一个启动时触发的任务来运行bat脚本。需确保脚本正确安全,避免对系统产生不良影响。
167 0
|
3月前
【Azure 应用服务】App Service 配置 Application Settings 访问Storage Account得到 could not be resolved: '*.file.core.windows.net'的报错。没有解析成对应中国区 Storage Account地址 *.file.core.chinacloudapi.cn
【Azure 应用服务】App Service 配置 Application Settings 访问Storage Account得到 could not be resolved: '*.file.core.windows.net'的报错。没有解析成对应中国区 Storage Account地址 *.file.core.chinacloudapi.cn
|
5月前
|
关系型数据库 MySQL 数据安全/隐私保护
windows系统bat批处理 mysql 脚本启动关闭
windows系统bat批处理 mysql 脚本启动关闭
213 3
|
5月前
|
Windows
windows系统bat批处理 网络设置大全 设置静态、动态IP地址
windows系统bat批处理 网络设置大全 设置静态、动态IP地址
1349 2
|
5月前
|
Windows
windows系统vbs脚本 恶搞关不掉的窗口 以及解决办法
windows系统vbs脚本 恶搞关不掉的窗口 以及解决办法
124 2
|
5月前
|
Windows
windows系统vbs脚本 恶搞将系统搞崩 死机 以及解决
windows系统vbs脚本 恶搞将系统搞崩 死机 以及解决
53 1
|
5月前
|
Windows
windows系统vbs脚本 提取文件夹中的所有文件名
windows系统vbs脚本 提取文件夹中的所有文件名
43 0
|
5月前
|
应用服务中间件 nginx Windows
windows系统bat批处理 管理nginx启动 nginx脚本管理bat脚本管理生命周期windows一键nginx启动
windows系统bat批处理 管理nginx启动 nginx脚本管理bat脚本管理生命周期windows一键nginx启动
108 0