Skip to content

Instantly share code, notes, and snippets.

@goyalmohit
Created January 26, 2018 11:55
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/2dcd29720d3f6accfd48d6713e667d33 to your computer and use it in GitHub Desktop.
Save goyalmohit/2dcd29720d3f6accfd48d6713e667d33 to your computer and use it in GitHub Desktop.
# Creates Azure Blob Storage Container
$strAccountKey = "yztbMxxxxxxxxxxxxxxxxx" # Replace this with your storage key
$strContext = New-AzureStorageContext -StorageAccountName $strAccountName -StorageAccountKey $strAccountKey
$containerName = "testfiles"
New-AzureStorageContainer -Name $containerName -Context $strcontext
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment