I have been trying to create a log file for an issue with our installer with the following commands:

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

and several other variations of the command, but it always pops up the window that states what command line parameters are valid for msiexec. What is the correct way to have the msi file create a log? I have windows installer 4.5.

link|improve this question

feedback

3 Answers

up vote 0 down vote accepted

The first and the last command lines are correct.
And you can drop quotes in this particular case.

link|improve this answer
feedback

I just tried it again after a reboot, the first command worked immediately. Dunno what was wrong but it's logging now.

link|improve this answer
It could be that either .log or .msi got locked by a process, and it failed. Or Windows Installer service became unstable for some reason. – Alexey Ivanov Aug 20 '11 at 8:49
feedback

Use capital "L" for the log argument:

msiexec /i "MxServeInstaller.msi" /L*v "log.log"

found that solution by accident...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.