Python msilib Module
Check if the Windows-only msilib module is available:
import importlib
print(importlib.util.find_spec("msilib") is not None)
Try it Yourself »
Note: msilib is Windows-only. The Tryit environment does not have this module installed.
Definition and Usage
The msilib module provides functions for reading and writing Microsoft Installer (MSI) files.
Members
Member | Description |
---|---|
OpenDatabase() | Open an MSI database file. |
FCICreate() | Create a new cabinet (CAB) file. |
UIError | Exception class for msilib UI-related errors. |