kamlesh bhatt
kamlesh bhatt

Reputation: 69

Download specific VHD file using Azcopy

my Azure storage container having multiple VHD files so how can i download specific VHD file to local using AZ-copy tool.

Upvotes: 2

Views: 2725

Answers (1)

Gaurav Mantri
Gaurav Mantri

Reputation: 136356

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.

Upvotes: 3

Related Questions