mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-15 22:36:46 +00:00
15 lines
378 B
PowerShell
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
|
|
}
|