可以更改 msiexec 返回代码

发布于 2024-12-11 06:51:52 字数 108 浏览 0 评论 0原文

我在进程中启动 msiexec,还使用 ​​::GetExitCodeProcess 来获取返回代码。问题是我可以使用某种方法来更改此返回码吗?我希望无论 msiexec 命令行是什么,返回码始终为 0

I launch msiexec at a process, also I use ::GetExitCodeProcess to get return code. The question is can I use some way to change this return code? I want the return code always 0 no matter what the msiexec command line is

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

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

发布评论

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

评论(3

雪化雨蝶 2024-12-18 06:51:52

您无法更改 msiexec 退出代码。

You cannot change msiexec exit code.

不醒的梦 2024-12-18 06:51:52

我怀疑你可以更改 msiexec 的退出代码。但是,您可以尝试忽略调用代码中的返回代码(无论它是什么)。

I doubt you can change the exit code of the msiexec. However, you can try to ignore the return code in the calling code (whatever it is).

一枫情书 2024-12-18 06:51:52

您无法控制其他进程的退出代码。该过程通过调用 来决定返回哪个代码ExitProcess 函数。

但是您可以忽略它的退出代码。
如果您不关心退出代码,您可以安全地忽略它,甚至删除对 GetExitCodeProcess 从您的代码中。

You can't control other process exit code. It is the process that decides which code it returns by calling ExitProcess function.

Yet you can ignore its exit code.
If you don't care for exit code, you can safely ignore it and even remove the call to GetExitCodeProcess from your code.

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