批处理文件:IE浏览器会话和使用代理配置

时间:2013-10-17 08:48:20

标签: internet-explorer batch-file proxy

我在这里遇到了一些挑战:我想创建一个打开IE浏览器会话到特定网址的批处理文件 - 足够简单

cd C:\"Program Files (x86)"\"Internet Explorer"
start iexplore.exe http://tumblr.com

挑战:

如何配置该bat文件以便连接将通过代理服务器,就像您在Internet选项中配置它一样?

enter image description here

谢谢!

2 个答案:

答案 0 :(得分:0)

enter code here最简单的方法 - with a temp .registry file

proxy.reg:

Regedit4

    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
    "ProxyEnable"=dword:00000001
    "ProxyServer"="http://ProxyServername:80"
蝙蝠:

regiedit.exe /s proxy.reg
cd C:\"Program Files (x86)"\"Internet Explorer"
start iexplore.exe http://tumblr.com

修改

 REG ADD HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyEnableRegKey /v 1

启用代理

REG add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyServer /v "http://ProxyServername:80"

设置代理服务器

在所有情况下,通过.bat更改代理设置都需要管理员权限。

答案 1 :(得分:0)

事情比你想象的要简单得多:

rem dos batch to enable proxy 
reg update "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyEnable=1"

rem dos batch to disable proxy 
reg update "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyEnable=0"

您可能希望在此内容之后添加一些iexplore.exe http://tumblr.com ...

所以,reg update some key=value ...更新注册表值。 "可以使键名中令人难以置信的现有空格输入一个参数,而不是两个。