I've managed to mess up my WiX installer somehow but thought would start a
new thread on this error.

I'm seeing the message below, does anyone know what is causing it. Am
guessing it is related to quoting but am going round in circles now.

Action start 16:08:52: QtExec.
MSI (s) (9C:F4) [16:08:52:930]: Invoking remote custom action. DLL:
C:\WINDOWS\Installer\MSI706.tmp, Entrypoint: CAQuietExec
MSI (s) (9C:30) [16:08:52:930]: Generating random cookie.
MSI (s) (9C:30) [16:08:52:930]: Created Custom Action Server with PID 2628
(0xA44).
MSI (s) (9C:08) [16:08:52:962]: Running as a service.
MSI (s) (9C:28) [16:08:52:962]: Hello, I'm your 32bit Impersonated custom
action server.
CAQuietExec:  Error 0x80070057: failed to get command line data
CAQuietExec:  Error 0x80070057: failed to get Command Line

Here is the Wix Code that is causing the problem.

    <Property Id="QtExecInstall" Value="perl
&quot;[INSTALLDIR]first.pl&quot; install"/>
      <CustomAction Id="QtExec" BinaryKey="wixca" DllEntry="CAQuietExec"
Execute="immediate" Return="check"/>
    <Binary Id="wixca" src="c:\wix_v2_orig\wixca.dll"/>

    <Property Id="QtExecDeInstall" Value="perl
&quot;[INSTALLDIR]last.pl&quot; deinstall"/>
      <CustomAction Id="QtExecu" BinaryKey="wixca" DllEntry="CAQuietExec"
Execute="immediate" Return="check"/>

    <InstallExecuteSequence>
      <Custom Action="QtExec" After="InstallFinalize"></Custom>
    </InstallExecuteSequence>

    <InstallExecuteSequence>
      <Custom Action="QtExecu" After="InstallFinalize">Installed AND NOT
REINSTALL</Custom>
    </InstallExecuteSequence>
-- 
View this message in context: 
http://www.nabble.com/More-on-CustomActions-tf3273661.html#a9102852
Sent from the wix-users mailing list archive at Nabble.com.


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to