Suppress Registration Dialog Staroffice 8
Hi,
I've already read the other post but to copy the profil doesn't seems to be an elegant solution.
In Staroffice 7 you can suppress the dialog by editing the filecommon.xcs (in /staroffice7/share/registry/schema/org/openoffice/office) after the netinstallation and before the userinstallation.
I try this for Staroffice 8 but it does not function.
Any ideas?
# 1
I've found a solution. You have to edit the file setup.xcs in /staroffice8/share/registry/schema/org/openoffice (before the user starts staroffice at the first time) as follows:
<prop oor:name="LicenseAcceptDate" oor:type="xs:string">
<info>
<desc>The xsd:datetime (YYYY-MM-DDTHH:MM:SS) on which the user has accepted the license. If the current installation has a license that is newer then this date, the license has to be accepted again.</desc>
</info>
<value>2006-06-22T09:55:00</value> <-- insert this line
</prop>
<prop oor:name="FirstStartWizardCompleted" oor:type="xs:boolean">
<info>
<desc>is set to true, when the FirstStartWizard has been completed</desc>
</info>
<value>true</value> <-- set from false to true
</prop>
The changes described in my last post aren't necessary.
bye..