設定代理設定和代理身份驗證

設定代理設定和代理身份驗證

我在 StackOverflow 上問過這個問題,但沒有引起太多關注,我認為最好將其移植到這裡:

我是新手PowerShell,我厭倦了改變proxy settingsproxy authentication每次去大學時,有沒有辦法使用 PowerShell 命令來做到這一點,例如使用 PowerShell 腳本輸入代理地址、端口和身份驗證,而不是使用圖形視窗InternetOptions>Connections>LanSettings(我假設存在) ,如果是的話我該怎麼做?

我搜尋過網路和 StackOverflow,但得到了不同的答案,但這些答案並不符合我想要的。

答案1

這些設定位於註冊表中。這是它們的樣子。您可以使用 更改您需要的內容Set-ItemProperty

[PS] C:\Windows\system32>cd HKCU:\"Software\Microsoft\Windows\CurrentVersion\Internet Settings"
[PS] HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings>Get-ItemProperty .


PSPath                    : Microsoft.PowerShell.Core\Registry::HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settin
                            gs
PSParentPath              : Microsoft.PowerShell.Core\Registry::HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion
PSChildName               : Internet Settings
PSDrive                   : HKCU
PSProvider                : Microsoft.PowerShell.Core\Registry
IE5_UA_Backup_Flag        : 5.0
User Agent                : Mozilla/4.0 (compatible; MSIE 8.0; Win32)
EmailName                 : User@
PrivDiscUiShown           : 1
EnableHttp1_1             : 1
WarnOnIntranet            : 1
MimeExclusionListForCache : multipart/mixed multipart/x-mixed-replace multipart/x-byteranges
AutoConfigProxy           : wininet.dll
UseSchannelDirectly       : {1, 0, 0, 0}
PrivacyAdvanced           : 0
ProxyEnable               : 0
EnableNegotiate           : 1
MigrateProxy              : 1
WarnOnPost                : {1, 0, 0, 0}
UrlEncoding               : 0
SecureProtocols           : 2720
ZonesSecurityUpgrade      : {246, 23, 219, 248, 142, 45, 207, 1}
DisableCachingOfSSLPages  : 0
WarnonZoneCrossing        : 0
CertificateRevocation     : 1
ProxyHttp1.1              : 1
ProxyOverride             : <-loopback>
EnableAutodial            : 0
NoNetAutodial             : 0
AutoConfigURL             : http://not.disclosing.network.name:8080/hostedconfig/PAC/bunchastuff

相關內容