Is it possible to write a script in python that installs an msi? Or
is it possible to make it through any other script?
Is it possible to write a script in python that installs an msi? Or
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use the antiquated os.system
('msiexec /i whatever.msi'), or, better, thesubprocessequivalent subprocess.call — in either case, you can also add whatever furthermsiexecflags or arguments you desire (documentation in abundance here).