Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
Use PowerShell to easily download virtual hard disks (VHDs) from Windows Azure.
April 20, 2014
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:temptest.vhd"Save-AzureVhd -Source $sourceVHD -LocalFilePath $destinationVHD -NumberOfThreads 5
You May Also Like