I have a file which is not installed:

<Binary Id="LaunchMyExe" SourceFile="$(var.Project.DependenciesPath)/myProgram.exe" />

And I would like to run it quietly during the InstallUISequence but I can't..
How to link the BinaryKey of this file to the CAQuietExec custom action?
Any sample appreciated.. thanks!!

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You'll have to author another custom action, which will extract that file from Binary and place to some folder known to your "LaunchMyExe" action, for instance, Temp folder.

link|improve this answer
Thx. using the Windows Installer database API or is there a much simpler solution? – Steph Ragazzi Oct 28 '11 at 9:38
If you can afford the dependency on the .NET (for instance, if you app requires .NET and you have it as a prerequisite), you can take advantage of DTF - the .NET wrapper on top of Windows Installer API, which is nice and well-designed and is deployed together with WiX. – Yan Sklyarenko Oct 28 '11 at 9:40
If I create a CA in C#, I will need some dependencies (extra home made C# DLLs)... How can I manage these DLLs to be able to run my CA? (How my CA will locate the DLLs?) – Steph Ragazzi Oct 28 '11 at 11:16
That's a good question. To be honest - I don't know, I've never created CA with a dependency to an external DLL which should be pulled... – Yan Sklyarenko Oct 28 '11 at 11:41
feedback

Is your program a console application? If it's a regular GUI application, you, most probably, don't need CAQuietExec action because you can run it directly with CustomAction element.

Set these properties:

  • BinaryKey="LaunchMyExe" - this is the key into the Binary table where your exe is stored.
  • ExeCommand="" - this tells WiX and Windows Installer you want type 2 custom action.
  • set other properties as appropriate.

If your application is a console one, then you would need WiX Quiet Execution Custom Action to hide the console window while it runs.

These links would help you:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.