「Dary 的小脚本:两键切换 IE 浏览器代理服务器[AHK]」的评论 http://inloveinparis.com/ahk-dary-ie-pr/ 分享免费、小巧、实用、有趣、绿色的软件 Fri, 26 Jul 2019 16:04:46 +0000 hourly 1 https://wordpress.org/?v=6.8.1 评论者:hmybskl http://inloveinparis.com/ahk-dary-ie-pr/comment-page-1/#comment-401681 Sat, 01 Apr 2017 15:23:22 +0000 http://inloveinparis.com/ahk-dary-ie-pr/#comment-401681 回复给 bruce

IEProxyToggle.exe 与修改注册表组合非常好用,非常感谢bruce提供这么好的程序 !

]]>
评论者:bruce http://inloveinparis.com/ahk-dary-ie-pr/comment-page-1/#comment-394095 Sun, 14 Aug 2016 11:37:24 +0000 http://inloveinparis.com/ahk-dary-ie-pr/#comment-394095 我用IE Proxy Toggle
IEProxyToggle.exe -on:开启IE代理

IEProxyToggle.exe -off:关闭IE代理

IEProxyToggle.exe -toggle:切换开启或关闭

]]>
评论者:hegc http://inloveinparis.com/ahk-dary-ie-pr/comment-page-1/#comment-382221 Sat, 07 Nov 2015 10:11:19 +0000 http://inloveinparis.com/ahk-dary-ie-pr/#comment-382221 @echo off
echo 自动设置代理服务器
set ie_reg_path=”HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings”

echo 正在清空代理服务器设置……
reg add %ie_reg_path% /v ProxyEnable /t REG_DWORD /d 0 /f
reg add %ie_reg_path% /v ProxyServer /d “” /f
reg add %ie_reg_path% /v ProxyOverride /t REG_SZ /d “127.0.0.1;localhost” /f
ipconfig /flushdns
echo 现在点击关闭(红叉),即清除代理设置
pause
echo 正在设置代理服务器……
reg add %ie_reg_path% /v ProxyEnable /t REG_DWORD /d 1 /f
reg add %ie_reg_path% /v ProxyServer /t REG_SZ /d socks=127.0.0.1:1080 /f
echo 正在刷新设置……
ipconfig /flushdns
echo 代理设置为:127.0.0.1:1080

]]>
评论者:LIANG http://inloveinparis.com/ahk-dary-ie-pr/comment-page-1/#comment-219386 Wed, 06 Aug 2014 01:33:45 +0000 http://inloveinparis.com/ahk-dary-ie-pr/#comment-219386 求更新地址啊~~

]]>
评论者:dawn http://inloveinparis.com/ahk-dary-ie-pr/comment-page-1/#comment-212166 Thu, 12 Jun 2014 06:47:02 +0000 http://inloveinparis.com/ahk-dary-ie-pr/#comment-212166 skydrive已经消逝了还能下载,百度。。。。。。

]]>
评论者:xixi http://inloveinparis.com/ahk-dary-ie-pr/comment-page-1/#comment-186049 Sun, 15 Dec 2013 05:45:01 +0000 http://inloveinparis.com/ahk-dary-ie-pr/#comment-186049 用批处理,双击自动切换状态。
if “%mode%” == “IEProxy” (
if not “%ProxyServer%” == “” reg add %REG_IE_PROXY_SET% /v ProxyServer /d “%ProxyServer%” /f
if not “%ProxyOverride%” == “” reg add %REG_IE_PROXY_SET% /v ProxyOverride /t REG_SZ /d “%ProxyOverride%” /f
set REG_IE_PROXY_SET=”HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings”
for /f “tokens=3 delims= ” %%i in (‘reg query !REG_IE_PROXY_SET! /v ProxyEnable’) do (
if “%%i” equ “0x0” (
reg add !REG_IE_PROXY_SET! /v ProxyEnable /t REG_DWORD /d 1 /f
call:msgBox 已启用代理
)
if “%%i” equ “0x1” (
reg add !REG_IE_PROXY_SET! /v ProxyEnable /t REG_DWORD /d 0 /f
call:msgBox 已停止代理
)
)
dllcall InternetSetOptionA,,0x000025,,,wininet.dll;InternetSetOptionA,,0x000027,,,wininet.dll-
exit
)
)
call:msgBox “IP 設置完成”
exit

只是核心部分,完整的批处理google“批处理切换网卡IP”。

]]>
评论者:scavin http://inloveinparis.com/ahk-dary-ie-pr/comment-page-1/#comment-181044 Sun, 03 Nov 2013 15:32:06 +0000 http://inloveinparis.com/ahk-dary-ie-pr/#comment-181044 回复给 kqij

@kqij 文件包含.ahk 源码

]]>
评论者:kqij http://inloveinparis.com/ahk-dary-ie-pr/comment-page-1/#comment-181042 Sun, 03 Nov 2013 15:27:36 +0000 http://inloveinparis.com/ahk-dary-ie-pr/#comment-181042 @Dary,请问能否提供此ahk源码供新手参考?

]]>
评论者:Dary http://inloveinparis.com/ahk-dary-ie-pr/comment-page-1/#comment-178558 Tue, 15 Oct 2013 08:41:42 +0000 http://inloveinparis.com/ahk-dary-ie-pr/#comment-178558 呃.原来发到网站上来了,我都不知道…
其实我也不用IE,但很多其他软件默认走IE的代理.所以写的这个.

]]>
评论者:水鬼 http://inloveinparis.com/ahk-dary-ie-pr/comment-page-1/#comment-177508 Sat, 05 Oct 2013 12:22:05 +0000 http://inloveinparis.com/ahk-dary-ie-pr/#comment-177508 回复给 猫三十郎

@猫三十郎
可以用啊,我就是在64位Win7下用,它会提示你做设置的。

]]>