Scripting: Install Args when using "Install A Software Package" for MSI
Trying to use a script to install a software package of a MSI file. Never tried this before, and not sure how to apply the /quiet or /log commands in the install args field as nothing I tried works.
I have it working fine in Managed installs but I prefer to use script because I have a few other steps to take before the install.
msiexec /i DocuSignPrintDriver3.2.1.msi /quiet log="c:\tmplog"
2 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
msiexec /i DocuSignPrintDriver3.2.1.msi /quiet log="c:\tmplog.log"
take a look at this following page. it gives a few examples, you might want to bookmark it.
https://www.advancedinstaller.com/user-guide/msiexec.html - alphabeta 5 years ago
The MSI code I put in works, but I am trying to use the "Install a software package" function. I don't know how to break it down into the "install args" field to make the install quiet, etc. - KaceBuddy 5 years ago
"Inventory › Software"
You still need to add your Install arguments:
/quiet log="c:\tmplog" - Channeler 5 years ago