Internet Explorer 的 Proxy 設定


修改登錄檔的值。
1.設定使用Proxy上網。
ECHO 關掉自動偵測Proxy。
REG ADD HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet" "Settings /v EnableAutodial /t reg_dword /d 000000000 /f
ECHO 設定使用Proxy。
REG ADD HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet" "Settings /v ProxyEnable /t reg_dword /d 000000001 /f

ECHO 設定"所有通訊協定都使用相同的Proxy伺服器"
REG ADD HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet" "Settings /v ProxyServer /t reg_sz /d 10.240.230.163:8080 /f

ECHO 設定近端網址不使用Proxy,跟一些特定位址不使用Proxy。
REG ADD HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet" "Settings /v ProxyOverride /t reg_sz /d 10.240.*.*;"<"local">" /f
2.不使用Proxy上網。
ECHO 關掉自動偵測Proxy。
REG ADD HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet" "Settings /v EnableAutodial /t reg_dword /d 000000000 /f

ECHO 關掉使用Proxy。
REG ADD HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet" "Settings /v ProxyEnable /t reg_dword /d 000000000 /f

ECHO 移除"所有通訊協定都使用相同的Proxy伺服器"
REG DELETE HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet" "Settings /v ProxyServer /f
.
ECHO 移除近端網址不使用Proxy,跟一些特定位址不使用Proxy。
REG DELETE HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet" "Settings /v ProxyOverride /f

留言