Get-AzureRmStorageAccount中的更改 - 缺少AccountType

时间:2016-06-09 08:37:58

标签: azure-storage azure-powershell

我注意到AccountType输出中的Get-AzureRmStorageAccount属性丢失了。这与冷/热存储的引入相吻合。添加了属性Kind并删除了AccountType

知道如何使用PowerShell获取此信息吗?在门户网站中,此信息仍然可用。在PowerShell对象中拥有此信息非常重要。

1 个答案:

答案 0 :(得分:1)

使用新的PS模块版本1.4.0以后,您可以从每个帐户的“Sku.Name”获取相同的数据。 E.g。

PS C:\ Users \ xxxxxx> $ Accounts = Get-AzureRmStorageAccount

<强>早些时候:

PS C:\ Users \ xxxxxx&gt; $账户[0] .AccountType

StandardLRS

立即: PS C:\ Users \ xxxxxxx&gt; $账户[0] .Sku.Name

StandardLRS

希望这有帮助,