Finally got a working batch program for checking applications.

RE:#BITBUCKET-3714
This commit is contained in:
James Douglass 2018-02-21 12:45:00 -08:00
parent ab72c86442
commit 7b9a16ff13
1 changed files with 1 additions and 6 deletions

View File

@ -11,10 +11,5 @@ REM
REM No fun colors here ... standard CMD prompt doesn't support it.
FOR %%a in (%*) DO (
@where /Q %%a
IF %ERRORLEVEL% == 0 (
echo OK: %%a
) ELSE (
echo MISSING: %%a
)
@where /Q %%a && ( echo OK: %%a ) || ( echo MISSING: %%a )
)