Executing installed batch file in Inno Setup

2019-01-24 23:49发布

I want the installer to create a service. I usually do this manually just by running the command prompt as an Administrator and going to the location of the .bat file and typing

service.bat install

Is there a way to execute this batch file inside an installer? If so, how? What do I add to my script? The location of this service file is {the location of my installed app}\bin and inside there is this service.bat file that needs to be executed.

标签: inno-setup
1条回答
Luminary・发光体
2楼-- · 2019-01-25 00:26

To execute a batch file in Inno Setup during installation, use the [Run] section entry:

[Run]
Filename: "{app}\bin\service.bat"; Parameters: "install"; Flags: runhidden
查看更多
登录 后发表回答