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

15 lines
378 B
PowerShell
Raw Normal View History

2020-02-01 11:18:06 -08:00
################################################################################
## File: Validate-VSWhere.ps1
## Desc: Validate vswhere
################################################################################
if (Get-Command -Name 'vswhere')
2020-02-01 11:18:06 -08:00
{
Write-Host "vswhere $(vswhere) on path"
}
else
{
Write-Host "vswhere is not on path"
exit 1
}