如何从MSI文件中获取[二进制数据]值

时间:2013-02-08 10:22:04

标签: python windows-installer binary-data

我正在使用python msilib 库读取MSI文件。我的目标是从二进制表中提取[二进制数据]并转储到文件中。 (使用ORCA工具,我们可以通过双击[Binary Data]单元格并写入文件来提取二进制数据)

我找不到任何msilib方法来获取二进制数据。它有使用Record.GetString(field)获取字符串数据的方法。但正如预期的那样,这对[二进制数据]不起作用并给出错误。

以下是代码段

import msilib
# msi file path which is to be read
msiFilePath = "C:/msi/test.msi"
dbObj = msilib.OpenDatabase(msiFilePath, msilib.MSIDBOPEN_READONLY)
sqlQuery = "select * from Binary"
view = dbObj.OpenView(sqlQuery)
view.Execute(None)
cur_record = viewObj.Fetch()
# In Binary table; Column no 1 have string data and Column # 2 have [Binary Data]
cur_record.GetString(2)

执行时: -

Traceback (most recent call last):
File "<pyshell#17>", line 1, in <module>
cur_record.GetString(2)
_msi.MSIError: unknown error 70c

有没有办法做到这一点?

1 个答案:

答案 0 :(得分:7)

msilibnot fully featured。具体来说,它无法读取二进制数据。

Pygame拥有更全面的功能和可扩展性(因为它是用Python编写的ctypes),msidb。它似乎没有包含在pygame文档中,但源代码非常简单。

您需要的MSI API是MsiRecordReadStream pygame.msidb包含在get_field_stream中的Cursor类。{/ p>