Difference between revisions of "EN/documentation/administration guide/deactivating registration wizard"
m (1 revision) |
|||
Line 1: | Line 1: | ||
+ | <section begin=title /><noinclude>{{DISPLAYTITLE:</noinclude>Deactivating the {{OOo}} Registration Wizard<noinclude>}}</noinclude><section end=title /> | ||
+ | |||
{{Documentation/AdminGuideTOC/v2 | {{Documentation/AdminGuideTOC/v2 | ||
|ShowPrevNext=block | |ShowPrevNext=block | ||
|ShowPrevPage=block | |ShowPrevPage=block | ||
|ShowNextPage=block | |ShowNextPage=block | ||
− | |PrevPage= | + | |PrevPage=EN/documentation/administration_guide/adding_autotext_files |
− | |NextPage= | + | |NextPage=EN/documentation/administration_guide/accessing_email_clients |
− | + | }} | |
The first time you start {{OOo}}, a wizard opens to guide you through the registration process. You can also start this process if you choose the '''Help → Registration''' menu item in any {{OOo}} program. You can deactivate the registration wizard as well as the Registration menu command. | The first time you start {{OOo}}, a wizard opens to guide you through the registration process. You can also start this process if you choose the '''Help → Registration''' menu item in any {{OOo}} program. You can deactivate the registration wizard as well as the Registration menu command. |
Revision as of 14:51, 30 March 2012
- Custom OpenOffice.org Basic Macros and Libraries
- OpenOffice.org Extension Manager
- Adding Template Files to an OpenOffice.org Installation
- Adding AutoText Files to an OpenOffice.org Network Installation
- Deactivating the OpenOffice.org Registration Wizard
- Accessing Email Clients
- Customizing the User Interface
- Restricting Functionality in OpenOffice.org
- Accessing OpenOffice.org User Profiles on an LDAP Server
The first time you start OpenOffice.org, a wizard opens to guide you through the registration process. You can also start this process if you choose the Help → Registration menu item in any OpenOffice.org program. You can deactivate the registration wizard as well as the Registration menu command.
To Deactivate the Registration Wizard
To use an extension to deactivate the Registration Wizard at the first startup of OpenOffice.org:
- Download the DisableFirstStartWzd.oxt extension (no longer maintained):
- For OpenOffice.org 2.x: DisableFirstStartWzd.oxt
- For OpenOffice.org 3.0.x: DisableFirstStartWzd_ooo3.oxt
- For OpenOffice.org 3.1: DisableFirstStartWzd_ooo31.oxt
- For OpenOffice.org 3.1.1: DisableFirstStartWzd_ooo311.oxt
- For OpenOffice.org 3.2: DisableFirstStartWzd_ooo32.oxt
- For OpenOffice.org 3.2.1: DisableFirstStartWzd_ooo321.oxt
- For OpenOffice.org 3.3: DisableFirstStartWzd_ooo33.oxt
- Install OpenOffice.org.
- At the command line, type:
unopkg add --shared DisableFirstStartWzd.oxt
The DisableFirstStartWzd.oxt is no longer maintained. You must create your own OpenOffice.org extension using the steps below. |
Create your own OpenOffice.org extension to disable the First Start Wizard
A simple OpenOffice.org extension can be used to quickly and easily deactivate the First Start Wizard. This extension can be quickly deployed on multiple OpenOffice.org installations using unopkg add.
To create your new extension:
- Create these four XML files:
- Common.xcu, with this content:
The value for the XML property "ReminderDate" is based on the Build ID of the specific version of OpenOffice.org that you are installing. You can find this value by opening the program/versionrc or program/version.ini file, and looking at the ProductBuildid value, or by clicking Help > About. Once you know the specific Build ID for the version of OpenOffice.org you are installing, you can replace the "ReminderDate" value with the new correct value. This must be in the format Patch<BuildID>.
<?xml version="1.0" encoding="UTF-8"?> <oor:component-data xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" oor:name="Common" oor:package="org.openoffice.Office"> <node oor:name="Help"> <node oor:name="Registration"> <prop oor:name="ReminderDate" oor:type="xs:string"> <value>Patch9521</value> </prop> </node> </node> <node oor:name="Misc"> <prop oor:name="FirstRun" oor:type="xs:boolean"> <value>false</value> </prop> </node> </oor:component-data>
- Settings.xcu with this content:
<?xml version="1.0" encoding="UTF-8"?> <oor:component-data xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" oor:name="Settings" oor:package="org.openoffice.Office.OOoImprovement"> <node oor:name="Participation"> <prop oor:name="OfficeStartCounterdown" oor:type="xs:int"> <value>0</value> </prop> <prop oor:name="ShowedInvitation" oor:type="xs:boolean"> <value>true</value> </prop> </node> </oor:component-data>
- setup.xcu with this content:
Set the value for the LicenseAcceptDate property to at least the installation date. In this example it has been set to 30 December 2010.
<?xml version="1.0" encoding="UTF-8"?> <oor:component-data xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" oor:name="Setup" oor:package="org.openoffice"> <node oor:name="Office"> <prop oor:name="ooSetupInstCompleted" oor:type="xs:boolean"> <value>false</value> </prop> <prop oor:name="LicenseAcceptDate" oor:type="xs:string"> <value>2010-12-30T08:14:11</value> </prop> <prop oor:name="FirstStartWizardCompleted" oor:type="xs:boolean"> <value>true</value> </prop> </node> </oor:component-data>
- META-INF/manifest.xml with this content
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE manifest:manifest PUBLIC "-//OpenOffice.org//DTD Manifest 1.0//EN" "Manifest.dtd"> <manifest:manifest xmlns:manifest="http://openoffice.org/2001/manifest"> <manifest:file-entry manifest:media-type="application/vnd.sun.star.configuration-data" manifest:full-path="setup.xcu"/> <manifest:file-entry manifest:media-type="application/vnd.sun.star.configuration-data" manifest:full-path="Common.xcu"/> <manifest:file-entry manifest:media-type="application/vnd.sun.star.configuration-data" manifest:full-path="Settings.xcu"/> </manifest:manifest>
- Common.xcu, with this content:
- Compress the files into one zip file and rename the zip file to DisableFirstStartWzd.oxt.
- Install OpenOffice.org.
- At the command line, type:
unopkg add --shared DisableFirstStartWzd.oxt
This command installs the extension and makes it available to all users of this specific OpenOffice.org installation. You must install the extension on each OpenOffice.org installation where you want to disable the Registration Wizard.
Content on this page is licensed under the Public Documentation License (PDL). |