I am writing an InstallerClass using C# as a custom action for my installer, and I can successfully run an external exe (installation) using the InstallerClass, but when I try to use /quiet in the InstallerClass, it does not install the exe. But I can successfully install this in silent mode using /quiet in the command prompt.

Is there any reason for this or otherwise how to install in silent mode using C#???

Edit:

Following is the code I use within the Commit method(overriden):

Process p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.FileName = pathExternalInstaller;
p.StartInfo.Arguments = "/quiet";
p.Start();

Thanks

link|improve this question

70% accept rate
please show some source code - esp. the part where you call the external EXE for installation. – Yahia Aug 26 '11 at 10:26
@ Yahia: I added the code I have used... – Dulini Atapattu Aug 26 '11 at 10:33
Have you (successfully) tried to run the "external installer" with the /quiet option directly, e.g. from a command prompt? – Christian.K Aug 26 '11 at 10:44
Does the installer run without the /quiet argument? I think you should p.WaitForExit(); – VVS Aug 26 '11 at 10:46
@ Christian.K: Yes, I could... – Dulini Atapattu Aug 26 '11 at 10:52
show 1 more comment
feedback

2 Answers

Here is what I use to do a quiet Install and Uninstall:

    public static bool RunInstallMSI(string sMSIPath)
    {
        try
        {
            Console.WriteLine("Starting to install application");
            Process process = new Process();
            process.StartInfo.FileName = "msiexec.exe";
            process.StartInfo.Arguments = string.Format(" /qb /i \"{0}\" ALLUSERS=1", sMSIPath);      
            process.Start();
            process.WaitForExit();
            Console.WriteLine("Application installed successfully!");
            return true; //Return True if process ended successfully
        }
        catch
        {
            Console.WriteLine("There was a problem installing the application!");
            return false;  //Return False if process ended unsuccessfully
        }
    }

    public static bool RunUninstallMSI(string guid)
    {
        try
        {
            Console.WriteLine("Starting to uninstall application");
            ProcessStartInfo startInfo = new ProcessStartInfo("cmd.exe", string.Format("/c start /MIN /wait msiexec.exe /x {0} /quiet", guid));
            startInfo.WindowStyle = ProcessWindowStyle.Hidden;
            Process process = Process.Start(startInfo);
            process.WaitForExit();
            Console.WriteLine("Application uninstalled successfully!");
            return true; //Return True if process ended successfully
        }
        catch
        {
            Console.WriteLine("There was a problem uninstalling the application!");
            return false; //Return False if process ended unsuccessfully
        }
    }
link|improve this answer
I called RunInstallMSI within the override for Commit in the InstallerClass, but it says that another installation is already in progress and does not allow to install the external exe during application installation.... any reason why or any solution??? – Dulini Atapattu Aug 29 '11 at 5:34
feedback

try

Process p = new Process();
p.StartInfo.UseShellExecute = false;
p.Start(pathExternalInstaller, "/quiet");
link|improve this answer
I am going to downvote this answer. What you posted is exactly what he is trying. did you even test this? – Ramhound Aug 26 '11 at 15:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.