I want to execute my batchfile which takes 3 cmd line arguments in which it should execute silent mode[should not see the console].Below is my wix code:
<CustomAction Id="ScrptsMngr" Property= "PrptyScrptsMngr"
Value=""[#filC22B3172A663C01F17B8CE4D55CB7DE2]" [ARG1] [ARG2] [ARG3]" Execute="immediate"/>
<CustomAction Id="PrptyScrptsMngr" BinaryKey="WixCA" DllEntry="CAQuietExec" Execute="deferred" Return="asyncWait" Impersonate="yes"/>
The above customaction action doesn't work for me. It always throws an error as CAQuietExec execution failed. Is my custom action is correct