How do i turn off OpenGL while deploying LibreOffice?

Hi Folks,
Is there a parameter to set OpenGL to disbaled while deploying the software?
Another possible option would be to deploy a settings file where the option is turned of but i couldnt find the right file where this option is stored.
Version is 5.4.7.2

Any Help is appreciated and thanks in advance!

PS: https://wiki.documentfoundation.org/Deployment_and_Migration#Silent_and_Unattended_Installations
With the line “During installation you can set these properties. The list is not complete, here are some examples:” isn’t helpful at all :wink:

That is not a task for deployment stage; that is post-deployment configuration, which is also covered on that page..

I’d say that preferred would be using ADMX in Windows AD domains; however, using .xcd files is, of course, also possible. One would need to backup one’s registrymodifications.xcu, then toggle OpenGL and exit LO, then diff the updated registrymodifications.xcu with its backup to find the relevant setting, which would be in this case

<item oor:path="/org.openoffice.Office.Common/VCL"><prop oor:name="UseOpenGL" oor:op="fuse"><value>false</value></prop></item>

… and then create own .xcd like

<?xml version="1.0"?> 
<oor:data xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
 xmlns:oor="http://openoffice.org/2001/registry">
  <dependency file="main" />
  <oor:component-data xmlns:install="http://openoffice.org/2004/installation" oor:name="Common" oor:package="org.openoffice.Office">
    <node oor:name="VCL">
      <prop oor:name="UseOpenGL"  oor:op="fuse" oor:type="xs:boolean"> 
        <value>false</value>
      </prop>
    </node>
  </oor:component-data>
</oor:data>

… which you put into C:\Program Files\share\registry on user boxes.

Thanks!
This pointed me to the right direction.

I’m relativly new to this topic and wasn’t sure about how the config files work.
Now I’m able to deploy my config thanks to your help.