gpt4 book ai didi

powershell - 下载Azure VHD到本地使用powershell

转载 作者:行者123 更新时间:2023-12-03 07:48:27 28 4
gpt4 key购买 nike

如何使用 powershell 将 azure vhd 下载到本地计算机?

我阅读了文档,但找不到像“https://XXX.blob.core.windows.net/vhds/XXX.vhd”这样的blob url

有人知道吗?

谢谢

最佳答案

根据您的描述,您的虚拟机使用托管磁盘而不是非托管磁盘。因此,您在存储帐户中找不到 VHD 文件。有关托管磁盘的更多信息请引用此link .

如果要下载托管磁盘中的 VHD,应先将其复制到存储帐户。

##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'

然后,您可以使用 Save-AzureVhdAzcopy将 VHD 下载到本地。

类似请引用question .

关于powershell - 下载Azure VHD到本地使用powershell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46114240/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com