5种设置IE代理的快捷方式


由于工作原因经常切换IE代理。
总结几种设置代理方法:


方法一,Internet选项设置

  • 打开IE浏览器-设置-Internet选项-链接-局域网设置-代理服务器
  • 经常使用,也可以桌面新建快捷方式,链接为C:\Windows\System32\inetcpl.cpl

方法二,使用代理工具设置

  • 以EasyProxy工具举例子。代理更新设置-代理服务器-右键新增常用代理IP,在代理地址处,右键设置或取消。
  • 同类软件特别多,自行百度即可。如花刺代理验证ProxyThorn。

方法三,利用批处理脚本

  • 新建几个文本后缀为.bat对应不同的代理即可。IP留空为不使用代理。
  • 添加批处理脚本
@echo off
echo 开始添加IE代理
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "10.10.10.10:1010" /f
echo 添加IE代理完成,按任意键关闭。
pause>nul
  • 删除批处理脚本
@echo off
echo 开始删除IE代理
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "" /f
echo 删除IE代理完成,按任意键关闭。
pause>nul

方法四,利用注册表导出文件

  • 新建几个文本后缀为.reg对应不同的代理即可。IP留空为不使用代理。
  • 添加注册表
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000001
"ProxyServer"="10.10.10.10:1010"
  • 删除注册表
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000
"ProxyServer"=""

方法五,利用快捷键工具AHK

  • 快捷键工具很多,AHK只是举例子。
  • 添加注册表
:*:111::
RegWrite, REG_DWORD, HKEY_CURRENT_USER, Software\Microsoft\Windows\CurrentVersion\Internet Settings, ProxyEnable, 1
RegWrite, REG_SZ, HKEY_CURRENT_USER, Software\Microsoft\Windows\CurrentVersion\Internet Settings, ProxyServer, 10.10.10.10:1010
return
  • 删除注册表
:*:222::
RegWrite, REG_DWORD, HKEY_CURRENT_USER, Software\Microsoft\Windows\CurrentVersion\Internet Settings, ProxyEnable, 0
RegWrite, REG_SZ, HKEY_CURRENT_USER, Software\Microsoft\Windows\CurrentVersion\Internet Settings, ProxyServer, 
return

备注:

  • 各种方法,最终目的都是为了使用方便,切莫舍本逐末,忘记本心。

你可能感兴趣的:(5种设置IE代理的快捷方式)