You can go for creating a classic storage account as I am detailing below:
- Install AzureRM module in PowerShell: Run the below commands. If you already have Azure az module configured, there will be certain warnings/errors during the installation. Resolve those by following the guidelines Install-Module -Name AzureRM -Repository PSGallery -Force
Update-Module -Name AzureRM
- Login AzureRM account
Login-AzureRMAccount
- Create a resource group in the preferred location New-AzureRmResourceGroup -Name <your resource group> -Location "South Central US"
- Register Classic storage NameSpace Register-AzureRmResourceProvider -ProviderNamespace Microsoft.ClassicStorage
- Create the classic storage account. Add your own values for resource group and storage account name New-AzureRmResource -ResourceName <unique name for storage account> -ResourceGroupName <your resource group> -ResourceType "Microsoft.ClassicStorage/StorageAccounts" -Location "South Central US" -Properties @{ AccountType = "Standard_LRS" } -ApiVersion "2015-06-01"

and
wherever the information provided helps you, this can be beneficial to other community members.