我可以获取和设置WebClient
对象的代理设置并进行出站呼叫。
我也可以向单个 CmdLets 提供-Proxy
和-ProxyCredential
提供,但我怎样才能设置一个全局默认值,以便 CmdLets 不需要额外的参数?
谢谢
卢克
我可以获取和设置WebClient
对象的代理设置并进行出站呼叫。
我也可以向单个 CmdLets 提供-Proxy
和-ProxyCredential
提供,但我怎样才能设置一个全局默认值,以便 CmdLets 不需要额外的参数?
谢谢
卢克
来自https://joshcodev.wordpress.com/2014/02/07/powershell-set-a-proxy/,
$global:PSDefaultParameterValues = @{ 'Invoke-RestMethod:Proxy'='http://proxyServer:proxyPort' 'Invoke-WebRequest:Proxy'='http://proxyServer:proxyPort' '*:ProxyUseDefaultCredentials'=$true }