MsiSetComponentStateW 函数 (msiquery.h)
MsiSetComponentState 函数将组件设置为请求的状态。
语法
UINT MsiSetComponentStateW(
[in] MSIHANDLE hInstall,
[in] LPCWSTR szComponent,
[in] INSTALLSTATE iState
);
参数
[in] hInstall
对提供给 DLL 自定义操作的安装句柄,或通过 MsiOpenPackage、MsiOpenPackageEx或 MsiOpenProduct获取的安装句柄。
[in] szComponent
指定组件的名称。
[in] iState
指定要设置的状态。 此参数可以是下列值之一。
价值 | 意义 |
---|---|
|
组件已卸载。 |
|
该组件已安装在本地驱动器上。 |
|
组件将从源、CD 或网络运行。 |
返回值
MsiSetComponentState 函数返回以下值:
言论
MsiSetComponentState 函数请求更改 组件表中记录的操作状态。
有关详细信息,请参阅 从程序调用数据库函数。
如果函数失败,可以使用 MsiGetLastErrorRecord获取扩展错误信息。
注意
msiquery.h 标头将 MsiSetComponentState 定义为一个别名,该别名根据 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 |
目标平台 | 窗户 |
标头 | msiquery.h |
库 | Msi.lib |
DLL | Msi.dll |