如何使自定义操作返回非零

发布于 2024-11-17 04:26:38 字数 216 浏览 0 评论 0原文

我正在使用 .NET 安装程序,并使用自定义操作可执行文件。根据此文档,如果失败它必须返回非零。然而,这对我来说是新领域,我不知道如何使可执行文件“返回”一个值。

自定义操作可执行文件如何返回非零值并中止安装?

I'm working with the .NET Installer, and using a custom action executable file. According to this documentation, if it fails it must return non-zero. However this is new ground for me and I do not know how to make an executable "return" a value.

How does an custom action executable return a non-zero value and abort the install?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

心奴独伤 2024-11-24 04:26:38

如果是您的可执行文件,只需添加一个异常处理程序(try/catch 块)并在 catch 块中返回 (Environment.Exit(-1) -1,否则返回 0。

如果是第三方,那么您的选择就更少了。尝试检查他们的手册或直接联系他们,

也许您可​​以运行可执行文件并查看它从命令行返回的值,除了在安装程序中使用它之外,您可能不需要执行任何操作。

If it is your executable, simply add an exception handler (try/catch block) and return (Environment.Exit(-1) -1 in the catch block, 0 otherwise.

If it is a third party, then you have less options. Try checking their manual or contact them directly.

Perhaps you can run the executable and see what values it returns from the command line. You may not have to do anything at all other than consuming it in your installer.

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