
Create a new storage account with a resource group, name, location, sku and kind.
So the points to note for Creating a storage account in Azure from PowerShell are the following key points:-
Create a storage account using PowerShell (know the order) 5** parameters******
- New-AzureRmResourceGroup -ResourceGroupName “GregExams” -Location “WestEurope”
- New-AzureRmStorageAccount -ResourceGroupName GregExams
-Name gregexams2storage-Location WestEurope-SkuName Standard_LRS-Kind StorageV2



