@echo off
path;C:\Program Files (x86)\Internet Explorer;C:\Program Files\Internet Explorer;C:\WINdows\system32\;\windows\system32\wbem;
set ie_proxy=192.168.0.111:8080
cls
:main
echo.
echo =======================================================
echo.
echo 1. 设置代理
echo.
echo 2. 删除代理
echo.
echo =======================================================
echo.
set /p choice=输入你要执行的项目序号(1,2):
if %choice%==1 goto set_proxy
if %choice%==2 goto del_proxy
:set_proxy
echo.
echo 正在设置IE代理! 完成后会重启浏览器!
taskkill /f /im iexplore.exe >nul 2>&1
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 "%ie_proxy%" /f
::跳过本地地址的代理服务器
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyOverride /t REG_SZ /d "<local>" /f
ping -n 5 127.0.0.1 >nul
start iexplore.exe http://ip.gs
goto main
:del_proxy
echo.
echo 正在删除IE代理! 完成后会重启浏览器!
taskkill /f /im iexplore.exe >nul 2>&1
reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f
ping -n 5 127.0.0.1 >nul
start iexplore.exe http://ip.gs
echo.
goto main
IE设置代理IP的bat脚本
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 今天做了个随机变换IP的功能由于今天懒得写爬虫爬取西刺网 (http://www.xicidaili.com/wt...
- 代码包含了3种方式的验证 通过已获取的文件IP 通过生成ip字符串 通过代理网站的爬取验证 验证成功的ip保存到一...