博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Win7批处理文件设置代理服务器
阅读量:6826 次
发布时间:2019-06-26

本文共 1094 字,大约阅读时间需要 3 分钟。

@echo off

echo ************************************
echo ******   请选择网络环境   ********
echo ******    1-- 内网环境      ********
echo ******    2-- 非办公地点   ********
echo ******    3-- 退出           ********
echo ************************************
set /p Select=请输入数字并回车:
if /i "%Select%" == "1" goto Pnet
if /i "%Select%" == "2" goto Other
if /i "%Select%" == "3" exit

:Pnet

echo 开始设置IE代理
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 "10.x.x.x:xxxx" /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyOverride /t REG_SZ /d "11.*;12.*;10.*;<local>" /f
goto Exit

:Other

echo 开始清除IE代理设置
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "" /f

goto Exit

:Exit

echo 代理服务器设置完成,按任意键退出!
pause>nul
exit

转载于:https://www.cnblogs.com/ddhost/archive/2013/02/26/2934020.html

你可能感兴趣的文章
做Web前端开发的你必须会这几点!
查看>>
react特性
查看>>
PAT A1037
查看>>
免费小说阅读小程序
查看>>
Spring MVC打印@RequestBody、@Response日志
查看>>
windows系统安装配置react-native运行环境
查看>>
Ajax在vue中的封装及使用
查看>>
python 使用PyQt5
查看>>
在Antd-Pro下实现文件下载
查看>>
Kotlin整合Vertx开发Web应用
查看>>
css-float
查看>>
95%的技术面试必考的JVM知识点都在这,另附加分思路!
查看>>
行为型模式:策略模式
查看>>
玩转Elasticsearch源码-ActionModule启动分析
查看>>
诚意之作,SuperTextView (v3.1.1)
查看>>
【重温基础】18.相等性判断
查看>>
一篇文章入门SQL语句
查看>>
【跃迁之路】【709天】程序员高效学习方法论探索系列(实验阶段466-2019.1.30)...
查看>>
Spring5:@Autowired注解、@Resource注解和@Service注解
查看>>
vue系列之双向绑定&vDom总结
查看>>