在我们的应用程序中,我们需要在安装期间更改jboss standalone-full.xml
文件的属性。
为此,我编写了一个perl脚本,它将接受xml文件,并且需要将值修改为命令行参数。我想在安装期间运行此脚本。
我在{Run]
文件的.iss(inno setup)
部分添加了以下行。
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
但它不起作用。