我正在使用命令:

$hostnames = Get-AzureRmWebApp -ResourceGroupName "app-rg" -Name "app" |
               Select-Object -Property hostnames

要使用Azure Web应用程序返回主机名列表,如下所示:
HostNames : {a.arup.com, a.internet.trafficmanager.net, a.azurewebsites.net}

但是,我有兴趣获取第一个域(a.arup.com)。使用powershell怎么办?

最佳答案

在Powershell中,当您引用列表中项目的属性时,您将它们作为列表进行交互。因此,您只需执行以下操作:

$hostnames = (Get-AzureRmWebApp).HostNames
$hostnames[0]

得到第一个。

10-02 08:33