my Azure storage container having multiple VHD files so how can i download specific VHD file to local using AZ-copy tool.
Asked
Active
Viewed 2,590 times
2
-
1What did you try so far? – abatishchev Feb 09 '15 at 17:51
1 Answers
3
Try this:
AzCopy /Source:"https://[accountname].blob.core.windows.net/[containername]/" /Dest:"[folder path e.g. d:\test\]" /SourceKey:[account key] /Pattern:"[vhd file name]"
Replace [accountname]
, [containername]
, [folder path]
, [account key]
and [vhd file name]
with appropriate values.

Gaurav Mantri
- 128,066
- 12
- 206
- 241