Hi all.
I was hoping you guys could help me on this one.

I'm no installer expert (very far from it), but I'm the guy who is
responsible for making the installer package of my team's product (VB6
application).
I've been experimenting with WiX (v2) and I've chosen the following as a
test cenario: we have a type library wich is distributed to each developer
and installed/uninstalled in a automated way (calls to msiexec in a batch
file).

So far, I've been able to both copy and register the typelib in my test
machine; however, when I uninstall the product, neither the file nor the
registry keys (TypeLib\{GUID...} and Interface\IAppBckgnd) are removed.
I'm including a snippet of the .wxs file:

(...)
                <Directory Id='TARGETDIR' Name='SourceDir' >
                        <Directory Id='SystemFolder' Name='SFolder' >
                                <Component Id='MainComponent'
Guid='A7C43377-1B6F-4F8D-A7DF-102F9DA568FD' >
                                        <File
                                                Id='cgAppBckgndLib_tlb'
                                                DiskId='1'
        
LongName='cgAppBckgndLib.tlb'
                                                Name='cgAppBGL.tlb'
                                                Source='cgAppBckgndLib.tlb'
                                                Vital='yes'
                                                KeyPath='yes'
                                        >
                                                <TypeLib
Id='6C0E82C5-A438-48F3-8F4E-E197C6CF5F29' Language='0' />
                                        </File>
                                </Component>
                        </Directory>
                </Directory>
                
                <Feature Id='Complete' Level='1'>
                        <ComponentRef Id='MainComponent' />
                </Feature>
                
                <Media Id='1' Cabinet='cgAppBckgndLib.cab' EmbedCab='yes'
DiskPrompt='Disc 1' />
                
                <Property Id='DiskPrompt' Value='Test 1.0 Installer [1]' />
                <Property Id='ARPNOMODIFY'>1</Property>
                <Property Id='ARPNOREPAIR'>1</Property>
                
        </Product>
</Wix>

Any help would be appreciated.

Regards,

Sérgio Sarabando


This message contains information that may be privileged or confidential and is 
the property of the Capgemini Group. It is intended only for the person to whom 
it is addressed. If you are not the intended recipient,  you are not authorized 
to read, print, retain, copy, disseminate,  distribute, or use this message or 
any part thereof. If you receive this  message in error, please notify the 
sender immediately and delete all  copies of this message.


-------------------------------------------------------------------------
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