Hi,
I want to install the generated msi file silently, it should not ask for UI, and it should write the log file. How it can be done? Its not the silent installation of prerequisites.
Thanks in Advance,
Harish.Y
Code: Select all
msiexec /i package.msi /L*V! "c:\install.log" /qn
You can check the log. Or you could use the "/qb" switch instead of "/qn" to use the BasicUI.And how can you tell that it has ran into an error?
1. Msiexec also sets an error level on return that corresponds to system error codes.Does the installer return error codes aswell or does it do an auto roll back and displaying an error pop-up?