Tag not monitored by Microsoft.
Hello
You’re absolutely right that B-series sizes like B1s and B2pts are mentioned in the documentation for Student subscriptions. However, in Azure, there’s an important difference between what is supported in general and what is currently available for a specific subscription.
Based on the behavior you’re seeing, here’s what’s most likely happening:
- For Standard_B2pts_v2, since it does not appear at all (even under “See all sizes”), this usually means the SKU is not currently enabled for your subscription. This is typically due to backend restrictions tied to the subscription offer type, rather than anything on the portal side.
- For Standard_B1s, the fact that it shows up but fails with “NotAvailableForSubscription” across multiple regions suggests that the size is recognized, but new deployments are currently blocked for your subscription. Because this is happening in all regions, it points more to a subscription-level restriction rather than a regional capacity issue.
Regarding your concern about these sizes being available previously, this can occur due to changes over time in Azure’s platform behavior. VM SKUs may be gradually restricted, rebalanced, or deprioritized for certain subscription types (such as Student subscriptions) based on capacity demand, lifecycle updates, or internal policy adjustments. In such cases, existing resources may continue to run, but new deployments of the same SKU may no longer be permitted.
However, Azure does reserve the right to adjust availability based on capacity and subscription type, which can result in scenarios like the one you are experiencing.
Recommended next steps:
Consider selecting an alternative VM size that is currently available for your subscription.
- Optionally, you can verify available SKUs using Azure CLI:
az vm list-skus --location <region> --output table
I hope this provides clarity on the behavior you are seeing. Please let me know if you have any queries in comments.