I have a simple WinForm Application en Visual Studio 2013, Framework 3.5 and I use WIX to get the .MSI file.
I want to do a Silent Installation so i use
p.StartInfo.FileName = "msiexec.exe";
p.StartInfo.UseShellExecute = false;
p.StartInfo.Arguments = "/i foo.msi /qn";
p.Start();
The problem is that using /qn the installation did no work.
If I do the installation without that parameter, the application is installed.