1

我想记录使用 power shell 在 azure 存储帐户中创建的文件共享数量。我所有的存储帐户都处于新资源管理器模式。

谢谢阿米特

4

1 回答 1

3

下面的 powershell 脚本应该适合你。

$ctx = New-AzureStorageContext -StorageAccountName <storage-account-name> -StorageAccountKey <storage-account-key>
(Get-AzureStorageShare -Context $ctx).count
于 2016-05-23T02:25:02.870 回答