How to read MSI properties in c#

后端 未结 5 1501
一生所求
一生所求 2020-12-31 11:13

I want to read properties of MSI in C# in desktop application.I am using following code:

    public static string GetMSIProperty( string msiFile, string msiP         


        
5条回答
  •  醉梦人生
    2020-12-31 11:27

    The SQL string is incorrect. It should be:

    SELECT `Value` FROM `Property` WHERE `Property`.`Property` = ’{0}’
    

提交回复
热议问题