In our application we need to change the property of the jboss standalone-full.xml
file during installation.
For that i have written a perl script which will accept xml file and value need to be modified as command line argument. I want to run this script during installation.
I have added below line in {Run]
section of .iss(inno setup)
file.
Filename: "{cmd}"; WorkingDir: "{app}\Perl64\"; Parameters: "/c ""bin\perl {app}\bin\makeHttpDisableScript.pl -file=""{app}\jboss\standalone\configuration\standalone-full.xml"" -httpEnabled=""false"""; StatusMsg: "Running perl script..."; Flags: runhidden
But it is not working.