gpt4 book ai didi

powershell - 如何在表 powershell 中显示可用位置

转载 作者:行者123 更新时间:2023-12-03 05:03:51 25 4
gpt4 key购买 nike

您好,我使用 PowerShell 命令 Get-AzureRmLocation 列出 azure 中的可用位置。我想以表格或某种格式良好的方式整齐地显示它们,而不是逐行列出它们。

我试过了

$locations = @(Get-AzureRmLocation | Select-Object -ExpandProperty DisplayName)
Write-Host -ForegroundColor Yellow "Available Locations :"
$locations | Format-Table

但这也列出了所有使屏幕看起来很长且不太好的内容。有办法吗?

我得到的输出是这样的列表 /image/wsqzu.jpg

我希望它是一个包含所有可用位置的两个表列。谢谢。

最佳答案

这是你想要的吗?

$locations = Get-AzureRmLocation
$locations | Format-Table @{n="Available Locations";e={$_.DisplayName}}

关于powershell - 如何在表 powershell 中显示可用位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49550274/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com