diff --git a/installer/Install.ps1 b/installer/Install.ps1 index 833fdf0..7128fc4 100644 --- a/installer/Install.ps1 +++ b/installer/Install.ps1 @@ -41,7 +41,7 @@ Function Test-CommandExists { $oldPreference = $ErrorActionPreference $ErrorActionPreference = 'stop' try { if (Get-Command $command) { RETURN $true } } - Catch { Write-Host "$command does not exist"; RETURN $false } + Catch { RETURN $false } Finally { $ErrorActionPreference = $oldPreference } } #end function test-CommandExists