Download VHD from Azure Storage
Easily download a VHD from Azure storage.
John Savill
September 28, 2014
1 Min Read
Q: How can I download a VHD I have in my Azure Storage account to my local disk?
A: There are several ways to download files from Azure. An easy way is to use one of the third-party Azure Storage tools, such as ClumsyLeaf Software's CloudXplorer. Another simple method is to use PowerShell; for example:
Save-AzureVhd -Source "https://.blob.core.windows.net/vhds/.vhd" -LocalFilePath "c:temp.vhd"
You can navigate the storage account's VHD container in the Azure portal to find the correct URL for a VHD. Then, just select the copy to clipboard icon.
About the Author
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.
You May Also Like