我正在尝试创建调用 Windows 安装程序自动化 api 的简单 c++ win32 控制台应用程序(在 vs2010 中)。但到目前为止我失败了。这种方法会导致“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;
}