Proxy
出自 新化國中wiki平台
windows設定
- 啟用 Proxy 伺服器的機碼
- reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "ProxyEnable" /t REG_DWORD /d 1 /f
- 停用 Proxy 伺服器的指令
- reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "ProxyEnable" /t REG_DWORD /d 0 /f
- 安靜導入reg檔: regedit.exe /s path of .reg file
- 啟用 Proxy 伺服器,並設定所有通訊協定使用相同的 Proxy 伺服器 ( 127.0.0.1:3128 )
"ProxyEnable"=dword:00000001 "ProxyServer"="127.0.0.1:3128" "ProxyOverride"="<local>"
- 啟用 Proxy 伺服器,並依據不同通訊協定 (ftp, http, https, socks) 設定不同的 Proxy 伺服器
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings] "ProxyEnable"=dword:00000001 "ProxyServer"="ftp=127.0.0.1:3128;http=127.0.0.1:3128;https=127.0.0.1:3443;socks=127.0.0.1:1080" "ProxyOverride"="<local>"