Proxy: Unterschied zwischen den Versionen
Aus Wiki-WebPerfect
Admin (Diskussion | Beiträge) |
Admin (Diskussion | Beiträge) |
||
Zeile 1: | Zeile 1: | ||
== Set WinHTTP Proxy with a bypass list == | == Set WinHTTP Proxy with a bypass list == | ||
netsh winhttp set proxy proxy-server="<your_proxy:port>" bypass-list="<*your_bypass.ch>" | netsh winhttp set proxy proxy-server="<your_proxy:port>" bypass-list="<*your_bypass.ch>" | ||
− | |||
− | |||
Version vom 5. November 2020, 15:07 Uhr
Set WinHTTP Proxy with a bypass list
netsh winhttp set proxy proxy-server="<your_proxy:port>" bypass-list="<*your_bypass.ch>"
Proxy (GET)
WinINet User:Get-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings" | fl *Auto*, *Proxy*
Get-ItemProperty -Path "HKLM:\Software\Microsoft\Windows\CurrentVersion\Internet Settings" | fl *Auto*, *Proxy*
((Get-ItemPropertyValue -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\Connections" -Name "WinHttpSettings") | ForEach{ [char]$_ }) -join "" -replace ([char]0)
((Get-ItemPropertyValue -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\Connections" -Name "WinHttpSettings") | ForEach{ [char]$_ }) -join "" -replace ([char]0)
Proxy (Remove)
WinHTTP:netsh winhttp reset proxy