Introduction
A resource group is a container that holds related resources for an Azure solution. The resource group can include all the resources for the solution.
I will provide do step by step with screenshots below.
Create the resource group Power Shell
Install the Azure Az PowerShell module
Open Power Shell ISE
Step 1
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Step 2
Install-Module -Name Az -Scope CurrentUser -Repository PSGallery -Force
Step 4
Connect-AzAccount
Step 5
New-AzResourceGroup -Name 'myResourceGroup' -Location 'EastUS'
You're decision for the Resource Group Name and Location
Conclusion
This article taught us how to create a Resource Group in our power shell. And if you have any questions please contact me.