Прочетете на английски Редактиране

Споделяне чрез

Create virtual machines with the Azure PowerShell

Create a resource group

In Azure, all resources are allocated in a resource management group. Resource groups provide logical groupings of resources that make them easier to work with as a collection. For this tutorial, all of the created resources go into a single group named TutorialResources.

Azure PowerShell
New-AzResourceGroup -Name TutorialResources -Location eastus
Output
ResourceGroupName : TutorialResources
Location          : eastus
ProvisioningState : Succeeded
Tags              :
ResourceId        : /subscriptions/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/resourceGroups/TutorialResources
Try the code in your browser