C++ Msi函数判断应用是否已经安装

#include <Windows.h>  
#include <Msi.h>  
#pragma comment(lib, "Msi.lib")  

bool CheckExistSoftware(wchar_t *upgradeCode)  //可以通过工具Orca查看安装包相应的upgradeCode  
{  
    wchar_t productCode[39];  
    if (ERROR_SUCCESS == MsiEnumRelatedProductsW(upgradeCode, 0, 0, productCode))  
    {  
        return true;  
    }  
    return false;  
}  

void GetSoftwareInstallPath(const wchar_t *upgradeCode, wchar_t *installPath, DWORD *pathLength)  
{  
    DWORD i = 0;  
    UINT result;  
    wchar_t productCode[39];  
    for (i = 0; ERROR_NO_MORE_ITEMS != (result = MsiEnumRelatedProductsW(upgradeCode, 0, i, productCode)); i++)  
    {  
        if (ERROR_SUCCESS == result)  
        {  
            if (ERROR_SUCCESS == MsiGetProductInfoW(productCode, INSTALLPROPERTY_INSTALLLOCATION, installPath, pathLength))  
            {  
                return;  
            }  
        }  
    }  
    wcscpy_s(installPath, 2, L"");  
}  

  

原文链接: https://www.cnblogs.com/mypsq/p/7149904.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

    C++ Msi函数判断应用是否已经安装

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/256671

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月14日 上午10:16
下一篇 2023年2月14日 上午10:17

相关推荐