发布网友 发布时间:2022-04-23 01:01
共3个回答
热心网友 时间:2023-09-17 18:48
这个不用批处理,也不用vbs。打开注册表,定位到[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]这个位置。在IE没有代理的时候,导出这个项为“无代理.reg”,然后给IE设置上代理,还是这个位置,导出为“有代理.reg”。以后需要使用代理的时候,就双击导入“有代理.reg”,不用代理的时候,就双击导入"无代理.reg"。需要重启IE以生效。
如果不会的话,把一下两段复制到记事本里面,分别另存为"有代理.reg"和“无代理.reg”就行了。
有代理:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000001
"ProxyHttp1.1"=dword:00000001
"ProxyServer"="127.0.0.1:80"
无代理:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000
"ProxyHttp1.1"=dword:00000001
"ProxyServer"=""
热心网友 时间:2023-09-17 18:48
1.设置代理:
把这个存为 设置IE代理.BAT
**********************黑客之乡为您解惑**********代码开始**************
@echo off
echo 开始设置IE代理数据..........
echo 现在程序将关闭您的浏览器。。。。。
taskkill /f /im iexplore.exe
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 "127.0.0.1:8000" /f
echo 成功设置代理!!!按任意键关闭!!!
pause>nul
**********************黑客之乡为您解惑**********代码结束**************
2.清除代理
把这个存为 清除IE代理.BAT
**********************黑客之乡为您解惑**********代码开始**************
@echo off
echo 开始设置IE代理数据..........
echo 现在程序将关闭您的浏览器。。。。。
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
echo IE代理清理完成按任意键关闭
pause>nul
**********************黑客之乡为您解惑**********代码结束**************
注意:代码的每5行和每6行为同一行(无回车),第7行与8行也无回车.已经测试成功.
热心网友 时间:2023-09-17 18:49
试试 Scriptomatic,鼠标能做的事,他都能做,微软官方出品强大工具
参考资料:http://www.microsoft.com/china/technet/community/scriptcenter/tools/wmimatic.mspx