diff --git a/win-vs-env.psm1 b/win-vs-env.psm1 index 1eb9093..9742c9c 100644 --- a/win-vs-env.psm1 +++ b/win-vs-env.psm1 @@ -34,9 +34,11 @@ function Invoke-Environment } function Get-VSInstallationPath { + Write-Host "ProgramFiles(x86) - ${env:ProgramFiles(x86)}" $vswhere = Get-VSWhere + Write-Host "vswhere - $vswhere" $installationPath = & $vswhere -prerelease -legacy -latest -property installationPath - + Write-Host "Done" return $installationPath }