Skip to content

Instantly share code, notes, and snippets.

@goyalmohit
Created January 26, 2018 11:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goyalmohit/2101ee9ed89e8ce0ce752d4fb04bcd36 to your computer and use it in GitHub Desktop.
Save goyalmohit/2101ee9ed89e8ce0ce752d4fb04bcd36 to your computer and use it in GitHub Desktop.
# Create General Purpose Azure Storage Account
$strAccountName = "mobinotifysa"
$locationName = "east us"
$sku = "Standard_LRS"
New-AzureRmStorageAccount -ResourceGroupName $resourceGroupName -AccountName $strAccountName -SkuName $sku -Location $locationNam
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment