假设我想在Inno安装程序中安装app.exe
,但安装完成后,我希望程序运行
cmd /k app.exe
而非app.exe
。
目前我有:
Filename: "cmd /k {app}\app.exe"; Description: "{cm:LaunchProgram,app}"; \
Flags: nowait postinstall skipifsilent runascurrentuser
但当然抱怨无法找到具有给定文件名的文件。我该怎么办?
答案 0 :(得分:4)
Parameters
。请参阅[Run]
section。Program Files
)。你需要double the double-quotes。{cmd}
constant代替对cmd.exe
。Filename: "{cmd}"; Parameters: "/k ""{app}\app.exe"""; \
Description: "{cm:LaunchProgram,app}"; \
Flags: nowait postinstall skipifsilent runascurrentuser