On 1/29/07, Neil Sleightholm <[EMAIL PROTECTED]> wrote:
>
> I wonder if anyone could give me some pointers on what the following error
> means:
>
> "The primary key 'regCEE002B6E272C08B0F4B8191A9027490' is
> duplicated in table 'Registry'.  Please remove one of the entries or rename
> a part of the primary key to avoid the collision."
>
>
>
> I think this is generated by the following fragment but it is part of a very
> large file with lot of <RegistryValue> keys:
>
>   <Component Id="xxxx.yy.zzzz.dll"
> Guid="811B5C06-06A4-431D-B1E8-F2025806A91E">
>
>     <File Id="xxxx.yy.zzzz.dll" Name="xxxx.yy.zzzz.dll" KeyPath="yes"
> Source="$(var.SourceDir)\xxxx.yy.zzzz.dll">
>
>       <Class Id="1F235F80-8889-4C2D-96E5-B4C3D4C186C9"
> Context="InprocServer32" Description="xxxx.yy.zzzz.SystemInfo"
> ThreadingModel="both">
>
>         <ProgId Id="xxxx.yy.zzzz.SystemInfo"
> Description="xxxx.yy.zzzz.SystemInfo" />
>
>       </Class>
>
>       <Class Id="{A67FCE62-694C-4E4E-A4E5-12036F18C3ED}"
> Context="InprocServer32" Description="xxxx.yy.zzzz.VideoView"
> ThreadingModel="both" Version="4.6">
>
>         <ProgId Id="xxxx.yy.zzzz.VideoView"
> Description="xxxx.yy.zzzz.VideoView" />
>
>       </Class>
>
>     </File>
>
>   </Component>
>

It means that wix has generated the same Id for two registry values,
which normally means that you have one or more duplicates of a
registry value in a component.

If you search through the wixobj files created by candle for
regCEE002B6E272C08B0F4B8191A9027490 you should find it in more than
one place. From those locations you should be able to figure out where
your duplicate registry values are coming from.

Btw, I compiled the fragment you supplied with Wix 3.0.2420.0 and did
not get any duplicated registry values from that alone.

/Johan

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to