Files
runner-images-sangeeth/images/win/scripts/Installers/Validate-VSWhere.ps1
2020-06-02 20:07:12 +03:00

15 lines
378 B
PowerShell

################################################################################
## File: Validate-VSWhere.ps1
## Desc: Validate vswhere
################################################################################
if (Get-Command -Name 'vswhere')
{
Write-Host "vswhere $(vswhere) on path"
}
else
{
Write-Host "vswhere is not on path"
exit 1
}