Difference between revisions of "EN/documentation/administration guide/windows"
m (1 revision) |
|||
Line 1: | Line 1: | ||
+ | <section begin=title /><noinclude>{{DISPLAYTITLE:</noinclude>Microsoft Windows<noinclude>}}</noinclude><section end=title /> | ||
+ | |||
{{Documentation/AdminGuideTOC/v2 | {{Documentation/AdminGuideTOC/v2 | ||
|OS_type=block | |OS_type=block | ||
|ShowPrevNext=block | |ShowPrevNext=block | ||
|ShowPrevPage=block | |ShowPrevPage=block | ||
− | |PrevPage= | + | |PrevPage=EN/documentation/administration_guide/linux |
− | |NextPage= | + | |NextPage=EN/documentation/administration_guide/mac_os_x |
}} | }} | ||
− | + | ||
__NOTOC__ | __NOTOC__ | ||
+ | |||
The {{OOo}} setup for Microsoft Windows uses MSI packages. MSI is the standard tool for installing software packages under Microsoft Windows. | The {{OOo}} setup for Microsoft Windows uses MSI packages. MSI is the standard tool for installing software packages under Microsoft Windows. | ||
Revision as of 15:18, 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 OpenOffice.org setup for Microsoft Windows uses MSI packages. MSI is the standard tool for installing software packages under Microsoft Windows.
The Advertise option (/J{m|u}) of the Microsoft Software Installer is not supported by the OpenOffice.org installation package. |
Extract the OpenOffice.org installation files
All files of the OpenOffice.org installation set are packed into a single file in the download version of the OpenOffice.org installation set. This file must be unpacked before the MSI package is accessible.
To expand the download installation set :
- Double click on the the file from the download install set or start the file from the command line.
- The OpenOffice.org Installation Preparation Wizard appears.
- Click Next.
- Select the Destination Folder for the unpacked files.
- Once all files are unpacked, the regular OpenOffice.org Installation Wizard dialog appears. Do not follow the installation dialog. Leave the dialog open and copy the expanded files from the installation set into a different directory.
- Click Cancel in the OpenOffice.org Installation Wizard, click Yes to confirm the cancellation, and click Finish to close the Installation Wizard.
Unattended (silent) installation
The parameter /qn is used to suppress the User Interface and all message boxes during the installation.
msiexec /qn /i openofficeorg<version>.msi
This installation type does not install OpenOffice.org on single machine, instead it copies the installation files, ready for a future OpenOffice.org installation, into a directory. The user could later start the OpenOffice.org setup from this directory for a local installation.
- Start the network Installation Wizard
msiexec /a openofficeorg<version>.msi
- Click Next
- Specify the network share where the installation files will be copied.
- Click Install.
- Click Finish when the installer is finished copying the files to the network share.
Users can install OpenOffice.org from this shared network location by browsing to the shared directory and double clicking on openofficeorg<version>.msi.
If you want to install addons, then you can use the command:
echo yes | "c:\program files\openoffice.org 3\program\unopkg.com" add <specificaddon>.oxt
Uninstall
Uninstalling MSI packages from the command line is not easy. Using the original name of the MSI package does not work. The Windows Installer expects the ProductCode of the application. The product code for an English OpenOffice.org installation set is different to the product code for a German or Italian installation set. OpenOffice.org saves this ProductCode into the setup.ini that is located in the program directory of OpenOffice.org. The parameter for the uninstall is /x and the /qn parameter for a silent uninstall.
- Open a file manager and browse to <openoffice.org-install-dir>/program.
- Open setup.ini and locate the ProductCode.
- Uninstall OpenOffice.org with:
msiexec /qn /x {4BC1CB2B-FDCE-4DB4-A557-BA8127569B0D}
The ProductCode {4BC1CB2B-FDCE-4DB4-A557-BA8127569B0D} is an example. You must find the correct product code for your specific OpenOffice.org installation. |
Repairing an OpenOffice.org installation
Existing OpenOffice.org installations can also be repaired using msiexec.
msiexec /f [p|o|e|d|c|a|u|m|s|v] /x {ProductCode}
A description of all repair options is available online in the Microsoft Developer Network: http://msdn.microsoft.com/en-us/library/Aa367988
Content on this page is licensed under the Public Documentation License (PDL). |