Summary: Use Windows PowerShell to show the files in an Azure Storage blob.
How can I use Windows PowerShell to see files that are in my subscription and stored in Azure blobs?
Use a combination of the Get-AzureStorageContainer and Get-AzureStorageBlob cmdlets.
For example, to see all of the data stored within the VHDs container in an Azure Storage blob, use:
Get-AzureStorageContainer vhds | Get-AzureStorageBlob