OK, I likely see your problem.
The “Deployment and Migration” wiki has that XML in the “Some tricks for post deployment configuration” section, where it discusses a way to put .xcd
files into shared “registry” directory, where it would define the defaults (“d” stands for “default”).
But then, the wiki discusses “Configuration Extension”, and in that section, it points to a PDF with some explanation of a different file type, which is .xcu
(user configuration, “u” for “user”).
In your case, you need one xcu
looking like
<?xml version="1.0"?>
<oor:component-data xmlns:oor="http://openoffice.org/2001/registry" oor:name="Jobs" oor:package="org.openoffice.Office">
<node oor:name="Jobs">
<node oor:name="UpdateCheck" oor:op="fuse">
<node oor:name="Arguments">
<prop oor:name="AutoCheckEnabled" oor:type="xs:boolean" oor:op="replace" oor:finalized="true">
<value>false</value>
</prop>
</node>
</node>
</node>
</oor:component-data>
and another one like
<?xml version="1.0"?>
<oor:component-data xmlns:oor="http://openoffice.org/2001/registry" oor:name="Update" oor:package="org.openoffice.Office">
<node oor:name="Update" oor:op="fuse">
<prop oor:name="Enabled" oor:type="xs:boolean" oor:op="replace" oor:finalized="true">
<value>false</value>
</prop>
</node>
</oor:component-data>
where both have their root element oor:component-data
.