Microsoft's documentation for msiexec says this:
/lv Turns on logging and includes verbose output in the output log file.
/l* Turns on logging and logs all information, except verbose information (/lv) or extra debugging information (/lx).
Examples
To install package C:\example.msi, using a normal installation process with all logging information provided, including verbose output, and storing the output log file at C:\package.log, type:
msiexec.exe /i "C:\example.msi" /L*V "C:\package.log"
I think it might help to have an example installer log. What is 'all logging information' (/L*V
) vs 'verbose logging' (/LV
)? Isn't verbose just that & historically shows all logging info? Guessing this is going to be a unique Microsoft thing