作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我使用 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/
我是一名优秀的程序员,十分优秀!