Sergio Sarabando wrote:
> 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.
>   
The easiest place to start is a verbose log. Capture one during install 
and one during uninstall, like this:

msiexec /l*vx install.log /i mypackage.msi
msiexec /l*vx install.log /x mypackage.msi

Then take a look around the logging for InstallValidate. MSI records 
there what it's going to do for each component. It should be "absent" 
but if it isn't, it explains why.

-- 
sig://boB
http://bobs.org



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