LibreOffice MSI Properties for Silent Deployment

This guide provides a comprehensive overview of the Microsoft Windows Installer (MSI) properties and command-line switches used for silently deploying LibreOffice across enterprise environments. System administrators can leverage these standard and vendor-specific properties to automate installations, suppress reboots, disable automatic update notifications, set default file associations, and tailor installed components to organizational standards.

Standard MSI Execution Switches

When deploying LibreOffice silently via msiexec.exe, standard Windows Installer switches define the execution behavior:

LibreOffice-Specific Public MSI Properties

LibreOffice provides several custom MSI properties that control application behavior, UI defaults, and integrations.

Update Checks and Telemetry

Shortcuts and Startup

File Type Associations (Microsoft Office Formats)

Language Selection

Installation Path

Component Control with ADDLOCAL and REMOVE

Administrators can selectively install or exclude specific modules using standard MSI feature selection:

Example Deployment Command

The following command installs LibreOffice silently, writes a verbose log file, suppresses reboots, disables auto-updates, disables desktop icons, and sets LibreOffice as the default handler for standard Microsoft Office formats:

msiexec.exe /i "LibreOffice.msi" /qn /norestart /L*v "C:\Logs\LibreOffice_Install.log" ISCHECKFORPRODUCTUPDATES=0 QUICKSTART=0 CREATEDESKTOPLINK=0 REGISTER_ALL_MSO_TYPES=1