如何使用PowerShell命令设置Azure FileShare的配额(大小)

时间:2016-11-24 20:06:55

标签: powershell azure fileshare

$ctx=New-AzureStorageContext <accountname> <accountkey>


$s = New-AzureStorageShare <accountname> -Context $ctx

1 个答案:

答案 0 :(得分:1)

我认为您正在寻找此cmdlet Arun:https://docs.microsoft.com/en-us/powershell/storage/azure.storage/v2.1.0/set-azurestoragesharequota

Set-AzureStorageShareQuota -ShareName "ContosoShare01" -Quota 1024

谢谢,蒂姆。