【发布时间】:2020-07-17 18:38:00
【问题描述】:
【问题讨论】:
【问题讨论】:
这是一般的 Windows Installer 错误消息,通常在安装/卸载过程中自定义操作失败时发生。尝试使用日志选项运行卸载过程
msiexec /x {ProductCode_Guid} /L*V uninstall.log
并检查哪个卸载自定义操作返回值 3 (this means an error occurred)。很可能该自定义操作存在错误配置,或者其代码实现只是引发错误。
【讨论】: