Download VHDs from AZURE
in Powershell
Add-AzureAccount
Get-AzurePublishSettingsFile
Import-AzurePublishSettingsFile –PublishSettingsFile "D:\example\****\**-credentials.publishsettings"
Save-AzureVhd
[-Source] <Uri>
[-LocalFilePath] <FileInfo>
[[-NumberOfThreads] <Int32> ]
[[-StorageKey] <String> ]
[[-OverWrite]]
[ <CommonParameters>]
# example
# -OverWrite : overwrite file if it exists
$sourceVHD = "https://example.blob.core.windows.net/exmaple/example.vhd"
$destinationVHD = "D:\example\example.vhd"
Save-AzureVhd -Source $sourceVHD -LocalFilePath $destinationVHD -NumberOfThreads 5 -OverWrite