This commit is contained in:
USER
2025-08-22 12:40:42 +01:00
parent 3de28867b2
commit e6a36c0426
3 changed files with 32 additions and 28 deletions

View File

@ -0,0 +1,17 @@
ECHO OFF
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"
)
exit /b