Azure Powershell因模糊错误而失败:发生了一个或多个错误

时间:2014-03-24 17:09:21

标签: powershell azure cmdlets vhd

我正在尝试将Azure vhd下载到本地磁盘。该过程开始,创建文件,报告进度,然后退出并显示以下消息。

Save-AzureVhd -Source $sourceVHD -LocalFilePath $destinationVHD -NumberOfThreads 5 -verbose
Elapsed time for download: 00:00:37
Save-AzureVhd : One or more errors occurred.
At line:4 char:1
+ Save-AzureVhd -Source $sourceVHD -LocalFilePath $destinationVHD -NumberOfThreads ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Save-AzureVhd], AggregateException
    + FullyQualifiedErrorId : System.AggregateException,Microsoft.WindowsAzure.Commands.ServiceManagement.StorageServices.SaveAzureVhdCommand

1 个答案:

答案 0 :(得分:3)

原因结果是没有记载,但我认为这是很常见的..

要将VHD复制到另一个存储帐户或在本地下载,您可以使用powershell,但VM必须处于“已停止”状态。 因为在VM运行时,它会不断写入VHD,修改文件大小和etag,导致并行副本失败。