Create an MSI log file

The first and the last command lines are correct:

msiexec /i "installer.msi" /l*v "log.log"
msiexec /l*v "log.log" /i "installer.msi"

And you can drop quotes in this particular case.

Leave a Comment