This commit is contained in:
USER
2025-08-22 12:11:48 +01:00
parent 8202867bed
commit 3de28867b2
4 changed files with 45 additions and 24 deletions

View File

@ -0,0 +1,19 @@
ECHO OFF
set path=%PATH%
set Software="LibreOffice"
set SoftwarePath="C:\Program Files\LibreOffice\program\soffice.exe"
echo %1
echo %2
REM Check if LibreOffice is installed
if exist %SoftwarePath% (
echo "%Software% is installed"
) else (
echo "%Software% is not installed"
)
exit /b