我必须通过 PowerShell 检索代理服务器地址和端口,以便使用该Invoke-Webrequest -uri http://some-site.com -Proxy
命令。预期输出应如下所示http://proxy-server.com:端口。
我有一个 PowerShell 函数可以检索代理服务器地址和端口,所以我们可以在脚本中使用它吗?
答案1
以下是实现我的目标的 PowerShell 函数:
function Get-InternetProxy
{
<#
.SYNOPSIS
Determine the internet proxy address
.DESCRIPTION
This function allows you to determine the the internet proxy address used by your computer
.EXAMPLE
Get-InternetProxy
.Notes
Author : Antoine DELRUE
WebSite: http://obilan.be
#>
$proxies = (Get-ItemProperty -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings').proxyServer
if ($proxies)
{
if ($proxies -ilike "*=*")
{
$proxies -replace "=","://" -split(';') | Select-Object -First 1
}
else
{
"http://" + $proxies
}
}
}
希望这可以帮助 !