如果有脚本就能简化程序:
开启:
@echo off
color 0a
title 开启IE代理
echo 开始设置IE代理上网
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 "192.168.87.28:8080" /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v AutoConfigURL /d "http://192.168.87.28:8080/accelerated_pac_base.pac" /f
关闭:
@echo off
color 0a
title 关闭IE代理
echo 开始关闭IE代理上网
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 "192.168.87.28:8080" /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v AutoConfigURL /d "" /f
不分系统,直接用就行了。
如果只是:使用自动配置脚本,
只要这样就可以了
打开:
@echo off
color 0a
title 开启IE代理
echo 开始设置IE代理上网
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v AutoConfigURL /d "https://xxxxxxxxx" /f
关闭:
@echo off
color 0a title
关闭IE代理
echo 开始关闭IE代理上网
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v AutoConfigURL /d "" /f
如果只是使用代理服务器:
打开:
@echo off
color 0a
title 开启IE代理
echo 开始设置IE代理上网
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "192.168.87.28:8080" /f
关闭:
@echo off
color 0a
title 关闭IE代理
echo 开始关闭IE代理上网
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "192.168.87.28:8080" /f
顺便放一个把 "自动检测前面的勾去掉" 的一个批处理文件,主要是现在轻云VPN业务要关闭了,
如果使用了类似 Grenn VPN 电脑端,断开或是退出之后,这个勾常常不会自动去掉。把批处理文件放到桌面上,点一下就行,很方便。
批处理文件下载: 自动检测前面的勾去掉
还没有评论,快来抢沙发!