Hi Sunil Yadav,
The “Provisioning State: Updating” in Azure generally means that the resource is undergoing a configuration or deployment update (e.g., extensions being installed, VM agent actions, or platform-level updates). When it gets stuck, it typically points to a backend issue or a problem with a resource extension/agent.
Look for any extensions stuck in Provisioning State = Updating or Failed: az vm extension list -g MyResourceGroup --vm-name MyVm
If an extension is stuck, try removing or reinstalling it.
Redeploy the VM through the Portal: VM > Settings > Redeploy + reapply
This usually clears stuck provisioning states without data loss.
Reapply the VM Configuration: az vm reapply -g MyResourceGroup -n MyVm
This re-runs the configuration and extensions
While sponsorship subscriptions have some limitations, this specific issue isn't typically related to subscription type unless you're hitting hidden quota limits.
For more information, please check: https://learn.microsoft.com/en-us/azure/virtual-machines/extensions/troubleshoot#troubleshooting-extension-failures
If you have any further queries, let me know. If the information is helpful, please click on Upvote.