I would like to run an executable file with a quiet execution custom action during the InstallUISequence phase.
This executable has a text file as a parameter. I don't want that text file to be installed and I can't put it on the directory/file part as it is intented to use during the UI sequence.
How can I do that?
Here is a sample code to explain what I want:

<CustomAction Id="RunIsql_cmd" Property="RunIsql" Value="&quot;[MYEXE]&quot; -U [PARAM1] -i **myFileFromThePackage.txt** Execute="immediate"/>
<CustomAction Id="RunIsql" BinaryKey="WixCA" DllEntry="CAQuietExec" Execute="immediate" Return="check" Impersonate="no"/>

How can I define myFileFromThePackage.txt ?
I've tried to define the file like this:

<Binary Id="DummyFileForInstallOnly" SourceFile="myFile.txt" />

But I can't associate the id to the CA..

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Adding it in Binary table is a good approach, but you also need to extract it during install in order to use it. This can be done through a custom action which uses the Windows Installer database API.

You will also need a custom action to delete the extracted file after it has been used.

link|improve this answer
Great... Is there any method more simple than creating my own CA? – Steph Ragazzi Oct 28 '11 at 6:26
Yes. Use a different setup authoring which offers direct support for temporary files. This way you don't have to handle them yourself. – Cosmin Pirvu Oct 28 '11 at 7:27
Finally I have created my own custom action to do the job – Steph Ragazzi Oct 31 '11 at 8:42
feedback

Your Answer

 
or
required, but never shown

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