Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想记录使用 power shell 在 azure 存储帐户中创建的文件共享数量。我所有的存储帐户都处于新资源管理器模式。
谢谢阿米特
下面的 powershell 脚本应该适合你。
$ctx = New-AzureStorageContext -StorageAccountName <storage-account-name> -StorageAccountKey <storage-account-key> (Get-AzureStorageShare -Context $ctx).count