"Proxy" 修訂間的差異
出自 新化國中wiki平台
(已建立頁面,內容為 "#啟用 Proxy 伺服器的機碼 #* reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "ProxyEnable" /t REG_DWORD /d 1 /f #停用 Proxy…") |
|||
行 3: | 行 3: | ||
#停用 Proxy 伺服器的指令 | #停用 Proxy 伺服器的指令 | ||
#* 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 "ProxyEnable" /t REG_DWORD /d 0 /f | ||
− | # | + | #啟用 Proxy 伺服器,並設定所有通訊協定使用相同的 Proxy 伺服器 ( 127.0.0.1:3128 ) |
"ProxyEnable"=dword:00000001 | "ProxyEnable"=dword:00000001 | ||
"ProxyServer"="127.0.0.1:3128" | "ProxyServer"="127.0.0.1:3128" | ||
"ProxyOverride"="<local>" | "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>" |
於 2018年9月6日 (四) 16:18 的修訂
- 啟用 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
- 啟用 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>"