Silent Install LibreOffice MSI with MST Transform

Deploying LibreOffice silently across multiple Windows systems requires executing the Windows Installer (msiexec.exe) with specific command-line switches. This guide explains how to apply transform files (.mst) to the LibreOffice Windows Installer package (.msi) for a fully unattended installation, detailing the required parameters, syntax, and practical examples.

Silent Installation Command Syntax

To install LibreOffice silently while applying a transform file, use the following command structure in an elevated Command Prompt or deployment script:

msiexec.exe /i "LibreOffice_x.x.x_Win_x64.msi" TRANSFORMS="custom_settings.mst" /qn /norestart

Command Parameter Breakdown

Complete Example with Logging

When deploying through enterprise tools such as Microsoft Endpoint Configuration Manager (SCCM), Intune, or Group Policy, it is best practice to include verbose logging to troubleshoot potential issues:

msiexec.exe /i "C:\Deploy\LibreOffice_24.2.0_Win_x64.msi" TRANSFORMS="C:\Deploy\LibreOffice_Config.mst" /qn /norestart /l*v "C:\Deploy\Logs\LibreOffice_Install.log"

Execution Requirements