The following table contains a partial list of MSIEXEC options and parameters:
Option
|
Parameters
|
Description
|
/I
|
package
|
Install a software package using the command line
|
/a
|
package
|
Install a software package on the network.
|
/x
|
package
|
Uninstall a software package using the command line.
|
/q
|
n|b|r|f
|
Specify a user interface level:
/qn No user interface
/qb Basic user interface
/qr Reduced user interface, modal dialog displayed at the end of installation
/qf Full user interface with modal dialog displayed at the end of installation
|
/l
|
e|v|* logfile
|
Specifypath to log file. Flags indicate which information to log.
/le Log all error messages to a file
/lv Verbose output
/l* Wildcard; Log all information, except verbose mode
/l*v Wildcard; Log all information including verbose mode. This is the recommended logging level to use when you are troubleshooting installation issues.
Example: msiexec /i example.msi /le logfile.txt
|