Hi,
        CAQuietExec is a replacement for your previous custom action.
Please read http://wix.sourceforge.net/manual-wix3/qtexec.htm but you
probably want something like the following...


<Property Id="QtExecCmdLine" Value="unset"/>

<CustomAction Id="ApplyFolderToCACommandLine" Property="QtExecCmdLine"
Value="tao_imr.exe -ORBInitRef
ImplRepoService=file://[APPLICATIONFOLDER]/VPCommon/Locator.ior shutdown
VPWEBSERVER" />

<CustomAction Id="RunQtExecCommand" BinaryKey="WixCA"
DllEntry="CAQuietExec" Execute="immediate" Return="ignore"/> 

<InstallExecuteSequence>
        <Custom Action="ApplyFolderToCACommandLine"
Before="RunQtExecCommand">PREVIOUSFOUND</Custom>
        <Custom Action="RunQtExecCommand"
Before="InstallFinalize">PREVIOUSFOUND</Custom>
</InstallExecuteSequence>



I have not tried this as I don't have the rest of your code.

This will call CAQuietExec with a command line specified in a property.
Unfortunately you can't just assign a formatted property in your code
(ie use [PROPERTY] references in a property), so you have to schedule
another custom action to set this property to the correct command line
first.


Dave

SDL PLC confidential, all rights reserved.
If you are not the intended recipient of this mail SDL requests and requires 
that you delete it without acting upon or copying any of its contents, and we 
further request that you advise us.
SDL PLC is a public limited company registered in England and Wales.  
Registered number: 02675207.  
Registered address: Globe House, Clivemont Road, Maidenhead, Berkshire SL6 7DY, 
UK.


------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to