用命令行批处理bat,设置代理服务器、DNS、网关、WINS等

本文提供了一个批处理脚本NetSet.bat,用于自动化设置本地计算机的代理服务器、DNS、网关和WINS服务器。只需修改IP地址并双击运行即可完成配置。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

http://hi.baidu.com/83050158/blog/item/50cbd63f9da79ccb7d1e711b.html

将下面代码复制到记事本,另存为NetSet.bat,修改相应ip地址,然后双击运行。 
@echo off 
title 自动设置代理服务器 
echo 自动设置代理服务器 
echo 【本程序由阿笨狗编写】 
echo 版权所有:http://www.pifoo.com 
echo QQ:33323489 
echo 需要以普通用户权限、管理员权限各运行本程序一次 
rem echo 正在清空代理服务器设置…… 
rem reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f 
rem reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "" /f 
rem reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyOverride /t REG_SZ /d 0 /f 
rem echo 代理服务器设置已经清空 
echo 正在设置代理服务器…… 
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f 
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "172.16.2.14:8080" /f 
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyOverride /t REG_SZ /d "" /f 
echo 正在设置DNS…… 
netsh interface ip set dns 本地连接 static 110.85.11.99 primary 
netsh interface ip add dns 本地连接 110.85.11.98 index=2 
netsh interface ip add dns 本地连接 110.85.11.97 index=3 
echo 正在设置网关…… 
netsh interface ip set address name="本地连接" gateway=172.16.13.1 gwmetric=auto 
echo 正在设置WINS…… 
netsh interface ip set wins 本地连接 static 172.16.13.4 
echo 正在刷新设置…… 
ipconfig /flushdns 
echo 显示新的设置: 
ipconfig /all 
echo 设置完毕,按任意键退出! 
pause

转载于:https://www.cnblogs.com/jayying/p/3172538.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值