使用MSI Automation API 32和64位的C ++应用程序

时间:2013-09-17 12:34:16

标签: c++ com windows-installer


我正在尝试创建简单的c ++ win32控制台应用程序(在vs2010中),它调用Windows安装程序自动化API。但到目前为止我失败了。此方法导致“Microsoft C ++异常:内存位置_com_error”错误。
如何正确使用这个api?如何只在一个.exe文件的32位和64位系统上正常工作?

非常感谢,
马雷克

#include "stdafx.h"
#include <windows.h>
#include <atlstr.h>
#import "msi.dll"

using namespace WindowsInstaller;

_bstr_t GetInstalledProduct(InstallerPtr pInstaller,_bstr_t upgradeCode){
    StringListPtr installedProducts = pInstaller->GetRelatedProducts(upgradeCode); 

    return installedProducts->Count > 0 ? installedProducts->GetItem(0) : ""; 
}

int _tmain(int argc, _TCHAR* argv[])
{
    ::CoInitialize(NULL);
    InstallerPtr pInstaller("WindowsInstaller.Installer");
    _bstr_t upgradeCode("4C34BD16-CAD4-4059-B074-777793406C5F"); 
    _bstr_t installedProduct = GetInstalledProduct(pInstaller, upgradeCode); 

    StringListPtr features = pInstaller->GetFeatures(installedProduct); 

    ::CoUninitialize();

    return 0;
}

1 个答案:

答案 0 :(得分:2)

我终于找到了解决方案。正确的方法是在链接器中包含msi.lib并使用来自windows sdk的Msi.h。

#include "stdafx.h"
#include <windows.h>
#include <Msi.h>

int _tmain(int argc, _TCHAR* argv[])
{
    wchar_t productCode[255]; 
    int result = MsiEnumRelatedProducts(L"{4C34BD16-CAD4-4059-A074-777493406C5F}", 0, 0, productCode); 

    wchar_t featureName[255]; 
    wchar_t featureParent[255]; 
    MsiEnumFeatures(productCode, 0, featureName, featureParent); 

    INSTALLSTATE featureState = MsiQueryFeatureState(productCode, L"FeatureName"); 

    return 0;
}