执行第 3 方安装程序时,Inno Setup 中的 ShellExec 或 Exec 函数可以使用哪些参数?
我对 Inno Setup 很陌生。我目前正在为我的 .exe 编译安装程序,并且我了解到 ShellExec
和 Exec
(文件函数)允许我执行第 3 方安装程序。
我可以知道这两个函数的“参数”输入的可用值或字符串是什么?目前,我只知道 /S
用于静默安装(隐藏第 3 方安装窗口)。非常感谢任何有关此的资源/备忘清单/备忘单。我不确定在哪里参考这一点,因为他们关于这两个文件函数的文档没有对此进行解释。
Inno 安装文档(文件函数):https://jrsoftware.org/ishelp/index。 php?topic=scriptfunctions
I am quite new to Inno Setup. I am currently compiling an installer for my .exe and I have come to know that ShellExec
and Exec
(File Functions) allows me execute 3rd-party installers.
May I know what are the available value(s) or string(s) for 'Params' input of both these functions? At the moment, I only know /S
is for silent install (hide the 3rd-party install window). Any resource(s)/cheatlists/cheatsheet(s) on this is greatly appreciated. I am not sure where to refer to on this because their documentation on those two File Functions did not explain on it.
Inno Setup Documentation (File Functions): https://jrsoftware.org/ishelp/index.php?topic=scriptfunctions
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“params”特定于第三方安装程序。你没有告诉我们任何关于他们的事情。
尽管
/S
是由 NSIS 制作的安装程序使用的。有关 NSIS 命令行参数,请参阅:https://nsis.sourceforge.io/Docs/Chapter3.html#installerusagecommon
尽管其他安装程序也很可能使用
/S
。通常使用
/?
(或-?
、/h
、/help
运行安装程序(或任何程序) > 等)应该为您提供命令行帮助。The "params" are specific to the third-party installers. You didn't tell us anything about them.
Though the
/S
is used by NSIS-made installers. For NSIS commandline parameters, see:https://nsis.sourceforge.io/Docs/Chapter3.html#installerusagecommon
Though it's quite possible that even other installers use
/S
.In general running an installer (or any program) with
/?
(or-?
,/h
,/help
, etc) should give you commandline help.