Re: [WiX-users] Error 1723. A DLL required for this install to complete could not be run. C#

2009-04-10 Thread Heath Stewart
Are you using P/Invoke (DllImportAttribute) for any custom actions? If the referenced DLL is not available in the system PATH environment variable you will see this. This is common for native debug builds, but for managed CAs you shouldn't see this unless you're referencing an assembly that you're

[WiX-users] Error 1723. A DLL required for this install to complete could not be run. C#

2009-04-10 Thread Natalia
I know that using custom actions written in C# is not a very good idea, but it happened we are using it in our project. I experience very exasperating problem with my dll. SOMETIMES, when I add new custom action to my cs-file, some custom action that worked good previously starts to return the

Re: [WiX-users] Error 1723. A DLL required for this install to complete could not be run.

2007-12-20 Thread Wilson, Phil
e.net Subject: Re: [WiX-users] Error 1723. A DLL required for this install to complete could not be run. Continue with previous post Condition and seq for those custom actions(got when I open msi with orca) SxsInstallCA Condition: (NOT REMOVE) AND (NOT Version9X) Sequence: 1571 SxsUninstallCA

Re: [WiX-users] Error 1723. A DLL required for this install to complete could not be run.

2007-12-20 Thread Guna S
Continue with previous post Condition and seq for those custom actions(got when I open msi with orca) SxsInstallCA Condition: (NOT REMOVE) AND (NOT Version9X) Sequence: 1571 SxsUninstallCA Cond: ((Installed AND NOT REINSTALL) OR MsiPatchRemovalList) AND (NOT Version9X) Sequence: 6523 On Dec 20

Re: [WiX-users] Error 1723. A DLL required for this install to complete could not be run.

2007-12-20 Thread SaiTeja
Hi, thanks for resp. In my code, I have lot of custom actions(dll and exe), in those there is no custom action named "CustomAction_SxsMsmInstall". But When I open my MSI with orca, I saw CustomAction_SxsMsmInstall and CustomAction_SxsMsmCleanup under Custom action. Could you please tell me

Re: [WiX-users] Error 1723. A DLL required for this install to complete could not be run.

2007-12-20 Thread Calin Iaru
Your custom action needs to return 0. Check the code and if the function CustomAction_SxsMsmInstall returns something else, then you have an error. SaiTeja wrote: > Hi, > > when I run my msi in Virtual Machine am getting following error. > > Can any one tell me how to solve this > > Action start

[WiX-users] Error 1723. A DLL required for this install to complete could not be run.

2007-12-19 Thread SaiTeja
Hi, when I run my msi in Virtual Machine am getting following error. Can any one tell me how to solve this Action start 11:54:59: InstallValidate. Action ended 11:54:59: InstallValidate. Return value 1. Action start 11:54:59: RemoveExistingProducts. Action ended 11:54:59: RemoveExistingProducts