24 lines
446 B
Batchfile
24 lines
446 B
Batchfile
@echo off
|
|
call C:\Scripts\wBase\baseENV.bat
|
|
call C:\Scripts\wLocal\localENV.bat
|
|
@REM xxxxxxx
|
|
echo "START: %~n0"
|
|
|
|
set path=%PATH%
|
|
|
|
set Software="LibreOffice"
|
|
set SoftwarePath="C:\Program Files\LibreOffice\program\soffice.exe"
|
|
|
|
echo "Checking for %1 at %2"
|
|
|
|
REM Check if LibreOffice is installed
|
|
if exist %2 (
|
|
echo "%1 is installed"
|
|
) else (
|
|
echo "%1 is not installed"
|
|
call %TMESSAGE% '"%1 missing on %check_computername%"'
|
|
)
|
|
|
|
exit /b
|
|
|