有没有办法在Microsoft Azure Storage Explorer或Azure Portal中查看托管磁盘的Blob?

有没有办法在Microsoft Azure Storage Explorer或Azure Portal中查看托管磁盘的Blob?,azure,azure-virtual-machine,azure-resource-manager,azureportal,azure-managed-disk,Azure,Azure Virtual Machine,Azure Resource Manager,Azureportal,Azure Managed Disk,当我使用Azure资源管理器和非托管磁盘创建VM时,我可以在名为“vhds”的子容器中的指定存储帐户的Blob容器下查看其.vhd和/或Azure门户 当我使用Azure资源管理器创建带有托管磁盘的VM时,我找不到任何与此托管磁盘相关的存储容器 我知道Azure正在为我“管理”此存储,而且我可以为此磁盘生成一个“SAS Url”(它没有给我有关blob存储位置的真实信息),但我相信(如果我错了,请告诉我),Azure必须将我的“受管磁盘”存储在我订阅的存储帐户中,我应该能够在Microsoft

当我使用Azure资源管理器和非托管磁盘创建VM时,我可以在名为“vhds”的子容器中的指定存储帐户的Blob容器下查看其.vhd和/或Azure门户

当我使用Azure资源管理器创建带有托管磁盘的VM时,我找不到任何与此托管磁盘相关的存储容器

我知道Azure正在为我“管理”此存储,而且我可以为此磁盘生成一个“SAS Url”(它没有给我有关blob存储位置的真实信息),但我相信(如果我错了,请告诉我),Azure必须将我的“受管磁盘”存储在我订阅的存储帐户中,我应该能够在Microsoft Azure Storage Explorer或Azure门户中的某个位置看到这些“托管磁盘”的blob


在门户网站或Microsoft Azure Storage Explorer中是否有查看这些托管磁盘.vhds的简便方法?

目前,无法在门户网站或Microsoft Azure Storage Explorer中查看托管磁盘.vhds

托管磁盘与非托管磁盘不同,托管磁盘存储在Microsoft托管存储帐户中。目前,我们无法查看它。您可以将托管磁盘复制到您的私人存储帐户

##create $SAS
$sas = Grant-AzureRmDiskAccess -ResourceGroupName shui -DiskName shuitest -DurationInSecond 3600 -Access Read 
$destContext = New-AzureStorageContext –StorageAccountName contosostorageav1 -StorageAccountKey 'YourStorageAccountKey' 
Start-AzureStorageBlobCopy -AbsoluteUri $sas.AccessSAS -DestContainer 'vhds' -DestContext $destContext -DestBlob 'MyDestinationBlobName.vhd'
注:

如果受管磁盘连接到VM,则应停止VM,然后将其复制到存储帐户

##create $SAS
$sas = Grant-AzureRmDiskAccess -ResourceGroupName shui -DiskName shuitest -DurationInSecond 3600 -Access Read 
$destContext = New-AzureStorageContext –StorageAccountName contosostorageav1 -StorageAccountKey 'YourStorageAccountKey' 
Start-AzureStorageBlobCopy -AbsoluteUri $sas.AccessSAS -DestContainer 'vhds' -DestContext $destContext -DestBlob 'MyDestinationBlobName.vhd'