I've a software which consists of six msi files, a setup.exe and vcredist.exe and I want to install it silently. A silent installation of the msi files is not possible but I can use myprogram.msi /passive. But here I've three problems.
- An existing version of the program is already installed and the silent installation doesn't update the existing one it justs installs it in addition to the old one.
- In the dialogs of
setup.exeit asks for credentials for a service which will be installed/ updated. But while installing the msi I don't know how to pass the credentials? - There are other user interactions while running
setup.exelike if setup should configure firewall.
The functionality of the setup.exe is also just a wrapper around those msi files, isn't it? Question is, is there a way to accomplish installing those msi files silently with supplying the user interaction like the setup.exe does?