I have an msi task that successfully creates an installation package. Within the package, I have several components that install vtk (third-party) dlls. The installation executes just fine -- everything in the right place.

However, when I uninstall the application, one out of 11 or so files fails to uninstall. This becomes a problem when I then try to reinstall the app, forcing the following error:

Error getting file version info for file C:\Windows\System32\vtkzlib.dll

If I manually delete the file and rerun the installation package, all is well.

The vtkzlib component is as follows:

<component name="vtkzlib" id="{93F1F19D-1A37-46c0-9EF7-B20C07A6441A}" attr="2" directory="SystemFolder" feature="DefaultFeature">
<key file="vtkzlib.dll" />
<fileset>
<includes name="vtkzlib.dll" />
</fileset>
</component>


Comparable component that uninstalls successfully:

<component name="vtktiff" id="{225D1AA6-0D88-4656-8065-E0AC426A206E}" attr="2" directory="SystemFolder" feature="DefaultFeature">
<key file="vtktiff.dll" />
<fileset>
<includes name="vtktiff.dll" />
</fileset>
</component>


I'm using nant and nantcontrib 0.84

Thanks in advance for any response

Ted



-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
_______________________________________________
Nant-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to