可以更改 msiexec 返回代码
我在进程中启动 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您无法更改 msiexec 退出代码。
You cannot change msiexec exit code.
我怀疑你可以更改 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).
您无法控制其他进程的退出代码。该过程通过调用
来决定返回哪个代码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.