[Windows] Add azcopy utility (#1008)

* azcopy10 deployment for Windows has been added

* small bugfixing

* Header has been added to Install-AzCopy.ps1

* Header has been added to Validate-AzCopy.ps1

* Packer tempaltes have been modified
This commit is contained in:
Andy Mishechkin
2020-06-08 11:59:13 +04:00
committed by GitHub
parent c471a356eb
commit 6070c25302
6 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
################################################################################
## File: Validate-AzCopy.ps1
## Desc: Validate AzCopy10
################################################################################
if (Get-Command -Name 'azcopy') {
Write-Host "$(azcopy --version) on path"
} else {
Write-Error "azcopy not on path"
exit 1
}