Share via

Unable to Create Windows Server VM in any Location

VMTester 0 Reputation points
2026-04-07T14:28:31.0466667+00:00

I am attempting to create a Windows Server VM. I receive this message when I create attempt to create one: "Your subscription doesn't support virtual machine creation in West US. Choose a different location." I have tried creating one with all available locations and receive the same sort of message with each one.

Azure Virtual Machines
Azure Virtual Machines

An Azure service that is used to provision Windows and Linux virtual machines.


2 answers

Sort by: Most helpful
  1. Alex Burlachenko 20,425 Reputation points MVP Volunteer Moderator
    2026-04-08T09:41:16.07+00:00

    VMTester hi and thx for join us at q&a,

    this is not capacity, this is subscription restriction, in short term, it is not Azure bug ur subscription is restricted or has zero quota. Message like “subscription doesnt support VM creation in region” across ALL regions > ur sub is limited, not the region & usually happens with

    free trial / student / sponsorship subs

    disabled compute provider

    quota = 0 for cores

    policy blocking VM creation, u can quick check

    az vm list-usage --location eastus
    

    if cores = 0 so thats it

    and check providers

    az provider show -n Microsoft.Compute --query registrationState
    

    if not Registered, pls register it

    most common fix tbh open support and ask to enable VM creation / increase quota. bc if its blocked in every region, u cant bypass it from portal

    rgds,

    Alex

    0 comments No comments

  2. Ankit Yadav 13,600 Reputation points Microsoft External Staff Moderator
    2026-04-07T14:43:35.9233333+00:00

    Hey VMTester, it sounds like your subscription is currently blocked from creating VMs in every region, not just West US. That typically means one of three things is off in your subscription:

    1. Resource Provider Not Registered • Make sure Microsoft.Compute is registered: – Portal: Subscriptions > [Your sub] > Resource providers > find Microsoft.Compute > click Register. – Or CLI:
      ```bash
      
      az provider register --namespace Microsoft.Compute
      
      ```
      
    2. vCPU Quota Is Zero • Azure enforces per-region and per-subscription vCPU quotas. If your quota is 0 everywhere, you’ll get that “doesn't support VM creation” error in every region. • Check in the portal under Subscriptions > [Your sub] > Usage + quotas > Virtual Machines. • Or CLI:
      
           az vm list-usage --location westus --output table
      
      
      • If you see 0 available cores, file a support request to increase your vCPU quota.
    3. Subscription or Policy Restrictions • Some subscription types (free trials, certain EA enrollments) or management group policies might deny Microsoft.Compute/virtualMachines/write. • In the portal check: Subscriptions > [Your sub] > Policies – look for any “Deny” rules on VM creation. • Also verify your subscription type (Free Trial vs. Pay-As-You-Go vs. CSP vs. EA).

    Before retrying, you can also confirm that the region actually supports the VM SKU you want:

    
    az vm list-sizes --location westus --output table
    
    

    If you see sizes listed, region support is OK—quota or policy is most likely the blocker.

    Hope this helps! If you’re still stuck, please share:

    • Your subscription type (Free Trial, Pay-As-You-Go, CSP, etc.)
    • A screenshot or exact error text from the Usage + quotas page
    • Any custom policies you’ve applied at the subscription or MG scope

    Reference docs

    1. Resolve InvalidResourceLocation for Microsoft.Compute/virtualMachines https://learn.microsoft.com/azure/virtual-machines/troubleshooting#invalidresourcelocation
    2. Azure Products by Region (to verify region support) https://azure.microsoft.com/global-infrastructure/services/
    3. Azure CLI: list VM sizes https://learn.microsoft.com/cli/azure/vm#az-vm-list-sizes
    4. Check and increase quotas https://learn.microsoft.com/azure/azure-portal/supportability/per-vm-quota-requests

    Note: This content was drafted with the help of an AI system. Please verify the information before relying on it for decision-making.

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.