Re: [WiX-users] EXE custom action cannot run because DLLs are removed

2013-06-11 Thread kurt.jen...@us.ophiropt.com
s.org] Sent: Thursday, June 06, 2013 8:55 AM To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users] EXE custom action cannot run because DLLs are removed Just a few comments: Deferred and before RemoveFiles makes sense, but what action is removing the Dl

Re: [WiX-users] EXE custom action cannot run because DLLs are removed

2013-06-11 Thread kurt.jen...@us.ophiropt.com
Thank you for the ideas. -Original Message- From: Sharon Pierson [mailto:sharon.pier...@netiq.com] Sent: Tuesday, June 11, 2013 10:34 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] EXE custom action cannot run because DLLs are removed Try moving

Re: [WiX-users] EXE custom action cannot run because DLLs are removed

2013-06-11 Thread Sharon Pierson
Try moving it sooner. You could run ProDriverRemove after InstallInitialize. Running it before RemoveFiles means it is likely scheduled after RemoveRegistryValues which might be the real problem. Look at the InstallExecuteSequence table using Orca to help with the ordering. Also, you might

Re: [WiX-users] EXE custom action cannot run because DLLs are removed

2013-06-06 Thread Phil Wilson
Just a few comments: Deferred and before RemoveFiles makes sense, but what action is removing the Dlls that the exe needs? Is APPLICATIONDIRECTORY recovered and is it correct at uninstall time? Your condition on the uninstall is incorrect. Use REMOVE="ALL" as a condition for an uninstall. The p