Continuation from Part –2. A storage account can contain zero or more containers. A container contains properties, metadata, and zero or more blobs. A blob is any single entity comprised of binary data, properties, and metadata.
Lets create a storage container under storage account we created in Part-2
Steps
- Open PowerShell window and import the Azure PowerShell Module
![]() |
Import-Module “C:Program Files (x86)Microsoft SDKsAzurePowerShell ServiceManagementAzureAzure.psd1” |
- Import the Credentials Publishing settings
![]() |
Import-AzurePublishSettingsFile C:AzureAzure_credentials_file.publishsettings |
- Get details of Azure Storage Accounts
![]() |
Get-AzureStorageAccount | SELECT StorageAccountName,Location,EndPoints |Format-Custom |
- Create the container under any of the account listed in step3. To create the container you require subscription Name,StorageAccountName,storageaccountkey to create AzureStorageContext.