[Solved] how can I install some program in silent mode? [closed]
If the items you need to deploy come in MSI format, you can always use a toolkit like WiX or InstallShield to build your installer and install the other MSIs silently using msiexec.exe with the /qn command line switch. (Or use the Process class from your application to invoke msiexec.exe /qn on whatever you want … Read more