如何使自定义操作返回非零
我正在使用 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果是您的可执行文件,只需添加一个异常处理程序(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.