Azure Rdp All regions Not showing?

Faizan Arif 1 Reputation point
2022-09-25T10:36:50.62+00:00

when i creat Virtual Machine the region option shows only 6 to 7 region where my rdp runs very slow i want my nearest region like India ,china or Dubai . I am a student ,plz help me out

Azure Resource Mover
Azure Resource Mover
An Azure service used for moving multiple resources between Azure regions.
224 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. JimmySalian-2011 42,071 Reputation points
    2022-09-25T11:30:47.73+00:00

    Hi,

    Check the regions that has Virtual Machine availability and it is filtered with China,India and UAE. products-by-region

    Also check the available resources in India as an example. geographies

    ==
    Please "Accept the answer" if the information helped you. This will help us and others in the community as well.


  2. Ryan Hill 27,111 Reputation points Microsoft Employee
    2022-09-29T20:41:00.643+00:00

    Another option is installing the Azure CLI and you can create the virtual machine using following

    # Get a complete list of locations  
    az account list-locations -o table  
      
    # Create the resource group  
    az group create --name myvmgroup --location uaenorth  
      
    # Create the vm  
    az vm create \  
        --resource-group myvmgroup \  
        --lcoation uaenorth \  
        --name itsmyvm \  
        --image Win2022AzureEditionCore \  
        --public-ip-sku Basic \  
        --admin-username demouser  
    
    0 comments No comments