Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Question
Thursday, September 6, 2018 5:23 PM
How can I increase the size of an already excising Azure Fileshare?
I can't find any option within the ARM to do this and all the articles on the web are related to increasing the size Virtual Machine disks. If it is not possible to do with ARM then there should be an PowerShell way. But where and how.
Hope to hear from y'all soon.
All replies (5)
Tuesday, October 9, 2018 10:36 PM ✅Answered
You can also Increase a fileshare quota using the following PS commands and steps:
**1- Set up context in PowerShell:
**
$Context = New-AzureStorageContext -StorageAccountName YOURSTORAGEACCOUNT
2- Run the following command:
Set-AzureStorageShareQuota -ShareName "NAMEOFSHARE" -Context $Context -Quota 2024
Size is in GB, I tested this and it should work.
Thursday, September 6, 2018 5:41 PM | 2 votes
Path to increasing the size of an Azure file share:
Home >Storage accounts >Select Your Storage Account > Files > Select your File share > Edit Quota.
See the screenshot:
“If this answer was helpful, click “Mark as Answer” or Up-Vote. To provide additional feedback on your forum experience, click here
Sunday, September 9, 2018 3:21 PM
Just checking in to see if the above response helped to answer your query. Let us know if there are still any additional issues we can help with.
Friday, October 12, 2018 5:47 PM
@efeurich Was the provided answer helpful to you ?
Thanks,
Adam
Thursday, August 22, 2019 7:09 PM
It will allow you to increase the file share size upto 5 TB and then you have to create another file share within the same storage account. That's the limit of standard storage account, however, premium storage account will let you increase up to 100 TB.
Waiting to have bigger than 5TB for standard storage account.