@echo off
REM========================================================================================
REM Install Libre Offcie
REM========================================================================================
REM Script Details:
REM --------------
REM This script will:
REM + silently install Libre Office
REM + Works for Windows XP / 7 32-bit and 64-bit
REM .
REM========================================================================================
echo Installing Libre Office - Please Wait.
echo Window will close after install is complete

REM Install Libre Office 3.6.4
msiexec.exe /i "%~dp0LibO_3.6.4_Win_x86_install_multi.msi" ALLUSERS=1 /q /norestart

msiexec.exe /i "%~dp0LibO_3.6.4_Win_x86_helppack_sv.msi" ALLUSERS=1 /q /norestart

REM Removes Libre Office Desktop Icon - Windows 7
if exist "%PUBLIC%\Desktop\LibreOffice 3.6.lnk" del "%PUBLIC%\Desktop\LibreOffice 3.6.lnk"

REM Return exit code to SCCM
exit /B %EXIT_CODE%

  • No labels