Finally got a working batch program for checking applications.
RE:#BITBUCKET-3714
This commit is contained in:
parent
ab72c86442
commit
7b9a16ff13
|
@ -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 )
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue