Files
runner-images/images/win/scripts/Installers/Validate-AzCopy.ps1
T

10 lines
368 B
PowerShell
Raw Normal View History

2020-06-08 11:59:13 +04:00
################################################################################
## 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
}