Klappt eine Installation mit MSI-Installer nicht, so kann von Microsoft aus eine detaillierte Log-Datei zur Installation erstellt werden. Gemäss nachfolgendem Microsoft-Artikel:


msiexec | Microsoft Learn


kann bei einer MSI-Installation eine Log-Datei als Parameter angegeben werden:


msiexec.exe [/i][/x] <path_to_package> [/L{i|w|e|a|r|u|c|m|o|p|v|x+|!|*}] <path_to_log>


Auszug aus dem oben aufgeführten Link:

---------------------------------------------------------------------------------------------------------------------------------

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"