Azure Exam Tips Part 3 – Create a storage account in Azure using PowerShell

Tip #3 – I need to know how to create a storage account in Azure using PowerShell.

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

https://docs.microsoft.com/en-us/azure/storage/common/storage-quickstart-create-account?tabs=powershell

  1. New-AzureRmResourceGroup -ResourceGroupName “GregExams” -Location “WestEurope”
  2. New-AzureRmStorageAccount -ResourceGroupName GregExams `
    -Name gregexams2storage `
    -Location WestEurope `
    -SkuName Standard_LRS `
    -Kind StorageV2