@echo off
echo 代理設置
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.1.1:80" /f
@ping 127.0.0.1 -n 5 >nul
以上內容保存為bat,運行后查看IE代理設置,應該已經改為192.168.1.1了,而且可以修改。再改為你需要的代理服務器地址即可。
親自試用,可以解決問題。