Difference between revisions of "OpenOffice.org 3.x"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(OpenOffice.org 3.0.0 (RC2, waiting for the final to be released).)
(OpenOffice.org 3.0.0 (RC3, waiting for the final to be released).)
Line 11: Line 11:
 
  openofficeorg30.msi
 
  openofficeorg30.msi
 
  setup.exe
 
  setup.exe
  setup.ini                          # this file contains the numeric ID you need for uninstallation, {232E0A28-4983-4F1D-A81F-D71083BF5863} in this case
+
  setup.ini                          # this file contains the numeric ID you need for uninstallation, {9F783F7A-97D0-44F1-BF0E-21198B92F9AE} in this case
  
This example is for the Release Candidate 2, italian localization, and associates OpenOffice as the default program for DOC, XLS and PPT files. Please update when the final will be released, adapt to your localizations, and change file associations to your needs.
+
This example is for the Release Candidate 3, italian localization, and associates OpenOffice as the default program for DOC, XLS and PPT files. Please update when the final will be released, adapt to your localizations, and change file associations to your needs.
  
  
Line 19: Line 19:
 
<?xml version="1.0" encoding="UTF-8"?>
 
<?xml version="1.0" encoding="UTF-8"?>
 
<packages>
 
<packages>
<package id="openoffice300-rc2-ita" name="OpenOffice.org 3.0.0 Release Candidate 2 italian" revision="1" reboot="false" priority="0">
+
<package id="openoffice300-rc3-ita" name="OpenOffice.org 3.0.0 Release Candidate 3 italian" revision="1" reboot="false" priority="0">
  
 
   <check type="uninstall" condition="exists" path="OpenOffice.org 3.0" />
 
   <check type="uninstall" condition="exists" path="OpenOffice.org 3.0" />
   <install cmd='msiexec /qn /i "%SOFTWARE%\ooo300-rc2-ita\openofficeorg30.msi" TRANSFORMS=%SOFTWARE%\ooo300-rc2-ita\ooo300.mst ALLUSERS=1 SELECT_WORD=1 SELECT_EXCEL=1 SELECT_POWERPOINT=1' />
+
   <install cmd='msiexec /qn /i "%SOFTWARE%\ooo300-rc3-ita\openofficeorg30.msi" TRANSFORMS=%SOFTWARE%\ooo300-rc3-ita\ooo300.mst ALLUSERS=1 SELECT_WORD=1 SELECT_EXCEL=1 SELECT_POWERPOINT=1' />
   <upgrade cmd='msiexec /qn /i "%SOFTWARE%\ooo300-rc2-ita\openofficeorg30.msi" TRANSFORMS=%SOFTWARE%\ooo300-rc2-ita\ooo300.mst ALLUSERS=1 SELECT_WORD=1 SELECT_EXCEL=1 SELECT_POWERPOINT=1' />
+
   <upgrade cmd='msiexec /qn /i "%SOFTWARE%\ooo300-rc3-ita\openofficeorg30.msi" TRANSFORMS=%SOFTWARE%\ooo300-rc3-ita\ooo300.mst ALLUSERS=1 SELECT_WORD=1 SELECT_EXCEL=1 SELECT_POWERPOINT=1' />
   <remove  cmd='msiexec /qn /x {232E0A28-4983-4F1D-A81F-D71083BF5863}' />
+
   <remove  cmd='msiexec /qn /x {9F783F7A-97D0-44F1-BF0E-21198B92F9AE}' />
  
 
</package>
 
</package>
Line 30: Line 30:
 
</source>
 
</source>
  
 +
 +
Seems to reboot the system despite the reboot="false" option when Quickstart is already loaded (ie: execute wpkg-start.bat explicitly or manual restart the WPKGSrv).
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Revision as of 09:11, 1 October 2008

This is a silent installer and uninstaller for OpenOffice.org 3.

Download the installer, unpack files to a local directory, customize with Microsoft ORCA tool if needed, and upload to your software source repository the following files:

licenses/
readmes/
instmsia.exe
instmsiw.exe
ooo300.mst                          # Microsoft Transform File created by you with the ORCA tool, this is not necessary
openofficeorg1.cab
openofficeorg30.msi
setup.exe
setup.ini                           # this file contains the numeric ID you need for uninstallation, {9F783F7A-97D0-44F1-BF0E-21198B92F9AE} in this case

This example is for the Release Candidate 3, italian localization, and associates OpenOffice as the default program for DOC, XLS and PPT files. Please update when the final will be released, adapt to your localizations, and change file associations to your needs.


<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package id="openoffice300-rc3-ita" name="OpenOffice.org 3.0.0 Release Candidate 3 italian" revision="1" reboot="false" priority="0">

  <check type="uninstall" condition="exists" path="OpenOffice.org 3.0" />
  <install cmd='msiexec /qn /i "%SOFTWARE%\ooo300-rc3-ita\openofficeorg30.msi" TRANSFORMS=%SOFTWARE%\ooo300-rc3-ita\ooo300.mst ALLUSERS=1 SELECT_WORD=1 SELECT_EXCEL=1 SELECT_POWERPOINT=1' />
  <upgrade cmd='msiexec /qn /i "%SOFTWARE%\ooo300-rc3-ita\openofficeorg30.msi" TRANSFORMS=%SOFTWARE%\ooo300-rc3-ita\ooo300.mst ALLUSERS=1 SELECT_WORD=1 SELECT_EXCEL=1 SELECT_POWERPOINT=1' />
  <remove  cmd='msiexec /qn /x {9F783F7A-97D0-44F1-BF0E-21198B92F9AE}' />

</package>
</packages>


Seems to reboot the system despite the reboot="false" option when Quickstart is already loaded (ie: execute wpkg-start.bat explicitly or manual restart the WPKGSrv).