执行第 3 方安装程序时,Inno Setup 中的 ShellExec 或 Exec 函数可以使用哪些参数?

发布于 2025-01-09 09:04:03 字数 446 浏览 0 评论 0原文

我对 Inno Setup 很陌生。我目前正在为我的 .exe 编译安装程序,并且我了解到 ShellExecExec(文件函数)允许我执行第 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泛滥成性 2025-01-16 09:04:03

“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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文