Skip navigation
hard disk drive

Download VHD from Windows Azure

Q: How can I download a virtual hard disk from Windows Azure?

A: Downloading a virtual hard disk (VHD) from Windows Azure is very simple:

$sourceVHD = "https://YOURSTORAGEACCOUNT.blob.core.windows.net/vhds/test.vhd"
$destinationVHD = "D:\temp\test.vhd"
Save-AzureVhd -Source $sourceVHD -LocalFilePath $destinationVHD -NumberOfThreads 5
Hide comments

Comments

  • Allowed HTML tags: <em> <strong> <blockquote> <br> <p>

Plain text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.
Publish