MsiInstallMissingComponentA 函数 (msi.h)

MsiInstallMissingComponent 函数安装意外缺少的文件。

语法

UINT MsiInstallMissingComponentA(
  [in] LPCSTR       szProduct,
  [in] LPCSTR       szComponent,
  [in] INSTALLSTATE eInstallState
);

参数

[in] szProduct

指定拥有要安装的组件的产品的代码示例。

[in] szComponent

标识要安装的组件。

[in] eInstallState

指定组件应安装的方式。 此参数必须是下列值之一。

价值 意义
INSTALLSTATE_LOCAL
组件应在本地安装。
INSTALLSTATE_SOURCE
应安装组件以从源运行。
INSTALLSTATE_DEFAULT
应根据安装程序默认值安装该组件。

返回值

价值 意义
ERROR_BAD_CONFIGURATION
配置信息已损坏。
ERROR_INSTALL_FAILURE
安装失败。
ERROR_INSTALL_SOURCE_ABSENT
源不可用。
ERROR_INSTALL_SUSPEND
安装已暂停。
ERROR_INSTALL_USEREXIT
用户退出了安装。
ERROR_INVALID_PARAMETER
其中一个参数无效。
ERROR_SUCCESS
函数成功完成。
ERROR_UNKNOWN_PRODUCT
无法识别产品代码。
 

有关错误消息的详细信息,请参阅 显示的错误消息

言论

MsiInstallMissingComponent 函数解析组件所属的功能。 然后,安装需要最少额外磁盘空间的产品功能。

注意

msi.h 标头将 MsiInstallMissingComponent 定义为一个别名,该别名根据 UNICODE 预处理器常量的定义自动选择此函数的 ANSI 或 Unicode 版本。 将中性编码别名与不中性编码的代码混合使用可能会导致编译或运行时错误不匹配。 有关详细信息,请参阅函数原型的 约定。

要求

要求 价值
最低支持的客户端 Windows Server 2012、Windows 8、Windows Server 2008 R2 或 Windows 7 上的 Windows Installer 5.0。 Windows Server 2008 或 Windows Vista 上的 Windows Installer 4.0 或 Windows Installer 4.5。 Windows Server 2003 或 Windows XP 上的 Windows Installer。 有关 Windows Installer 版本所需的最低 Windows Service Pack 的信息,请参阅 Windows Installer Run-Time 要求。
目标平台 窗户
标头 msi.h
Msi.lib
DLL Msi.dll

另请参阅

Multiple-Package 安装