Disable LibreOffice Automatic Updates in Enterprise

Managing software updates centrally in enterprise environments ensures system stability and prevents standard users without administrator rights from being interrupted by actionable update prompts. This guide details how to suppress and permanently disable the automatic update check dialog across enterprise LibreOffice deployments using centralized configuration files, Group Policy (GPO), and installation properties.


Method 1: Deploy a Centralized Configuration File (Cross-Platform)

LibreOffice reads configuration data from XML-based files placed in its installation directory. Deploying a custom .xcd file applies to all users on the machine and can lock the setting so users cannot re-enable it.

  1. Create a file named disable-update-check.xcd.
  2. Add the following XML configuration:
<?xml version="1.0" encoding="UTF-8"?>
<oor:data xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <oor:component-data oor:name="Jobs" oor:package="org.openoffice.Office">
    <node oor:name="Jobs">
      <node oor:name="UpdateCheck" oor:op="replace">
        <prop oor:name="AutoCheckEnabled" oor:type="xs:boolean" oor:finalized="true">
          <value>false</value>
        </prop>
      </node>
    </node>
  </oor:component-data>
</oor:data>
  1. Deploy this file to the LibreOffice registry directory based on the target OS:
    • Windows: C:\Program Files\LibreOffice\share\registry\
    • Linux: /usr/lib/libreoffice/share/registry/ or /opt/libreoffice/share/registry/
    • macOS: /Applications/LibreOffice.app/Contents/Resources/share/registry/

Setting oor:finalized="true" locks the preference, graying out the option under Tools > Options > LibreOffice > Online Update in the application interface.


Method 2: Suppress Updates via Group Policy (Active Directory)

For environments running Windows Active Directory, you can enforce update suppression using the official LibreOffice ADMX templates.

  1. Download the LibreOffice ADMX templates from the official LibreOffice distribution or resource repository.
  2. Copy the .admx files to C:\Windows\PolicyDefinitions\ (or the central PolicyDefinitions store) and the corresponding .adml language files to the appropriate language subfolder (e.g., en-US).
  3. Open the Group Policy Management Console (GPMC).
  4. Navigate to Computer Configuration > Administrative Templates > LibreOffice > Online Update.
  5. Locate the Online Update setting and set it to Disabled.
  6. Apply the GPO to the targeted Organizational Units (OUs).

Method 3: Remove the Online Update Module During MSI Installation

If deploying LibreOffice via Microsoft Endpoint Configuration Manager (SCCM), Microsoft Intune, or custom deployment scripts, you can exclude the online update component entirely during installation.

Execute the silent installation command with the REMOVE parameter:

msiexec /i "LibreOffice_x.x.x_Win_x64.msi" REMOVE=gm_o_Onlineupdate /qn /norestart

This prevents the update-checking binaries and scheduled background checks from being installed on client machines.