阿笨狗(jspadmin)网络日志

个人网络日志,网络、技术、思想、生活、札记……

« IE无法正常登陆邮箱?部分网页无法正常浏览?无法缩略图查看文件?解决办法教给你几个小技巧 提高局域网内的网速 »

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

将下面代码复制到记事本,另存为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 Share

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

日历

最新评论及回复

最近发表

Powered By Z-Blog 1.8 Walle Build 100427

Auto Publisher Copyright 1999-2011 www.pifoo.com. Some Rights Reserved.
闽ICP备05035478号