是否可以使用python安装msi?

时间:2010-06-28 05:28:01

标签: python scripting

是否可以在python中编写一个安装msi的脚本?要么 是否有可能通过任何其他脚本?

2 个答案:

答案 0 :(得分:6)

您可以使用过时的os.system ('msiexec /i whatever.msi'),或者更好的subprocess等效subprocess.call - 在任何一种情况下,您还可以添加更多内容{{1你想要的标志或参数(丰富的文档here)。

答案 1 :(得分:0)

AFAIK,可以在Python中使用WMI,因此您应该能够使用Win32_Product.Install方法安装MSI文件。