You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@openoffice.apache.org by Herbert Duerr <hd...@apache.org> on 2012/03/01 10:42:43 UTC

Re: AW: Unable to install AOO on a clean Windows XP

On 29.02.2012 15:56, Hans Zybura wrote:
> The last 3 lines before the error is thrown are:
>
> [HZ_1:] MSI (s) (44:04) [13:02:50:677]: Executing op:
> ActionStart(Name=RegisterExtensions,,)
> [HZ_2:] Action 13:02:50: RegisterExtensions.
> [HZ_3:] MSI (s) (44:04) [13:02:50:677]: Executing op:
> CustomActionSchedule(Action=RegisterExtensions,ActionType=1025,Source=Binary
> Data,Target=RegisterExtensions,CustomActionData=C:\Program
> Files\OpenOffice.org 3\)

Thanks, that is interesting. I don't have a system where I can reproduce 
and debug this problem, but I can provide some code pointers that could 
help someone else:

The relevant code for RegisterExtensions() in
https://svn.apache.org/repos/asf/incubator/ooo/trunk/main/setup_native/source/win32/customactions/shellextensions/registerextensions.cxx
suggests that it just tries to run a "unopkg.exe sync".

Unopkg.exe itself is created from the sources in
   main/desktop/source/deployment/unopkg/

Herbert