I have defined a WIX script that requires to run a .NET application with
elevated rights during uninstallation. I added the following lines to my
file: 

<Binary Id="UninstallFile" SourceFile="Uninstall.exe" /> 
<CustomAction Id="UninstallAction" BinaryKey="UninstallFile" ExeCommand=""
Return="ignore" Impersonate="no" Execute="deferred" /> 
<InstallExecuteSequence> 
  <Custom Action="UninstallAction" After="PublishProduct"> 
$BinaryComponents=2</Custom> 
</InstallExecuteSequence> 

It works fine if "Uninstall.exe" doesn't depend on a custom DLL. But I do
need a custom DLL during the uninstallation. Does anyone know how to
accomplish this?
-- 
View this message in context: 
http://www.nabble.com/Use-multiple-files-during-CustomAction-tp15946177p15946177.html
Sent from the wix-users mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to