Hi Bill W,
The default enabling of large file shares can indeed be limiting in certain scenarios. Few additional options you might consider:
Use General Purpose v1 Storage Accounts:
- General Purpose v1 (GPv1) storage accounts do not support large file shares by default. You can create a GPv1 storage account and then create a file share with a smaller quota.
you can create a GPv1 storage account using Azure CLI:
az storage account create \
--name <your_storage_account_name> \
--resource-group <your_resource_group_name> \
--location <your_location> \
--sku Standard_LRS \
--kind Storage
Depending on your use case, you might explore other Azure storage options like Blob Storage, which can be configured with different tiers and quotas, providing feedback directly to Microsoft through the Azure portal can help improve the documentation and potentially influence future updates to the service.
If you have any other questions or are still running into more issues, let me know in the "comments" and I would be happy to help you