I've built a Sql Server Express installer using the .Net Process class, that will be used in my application's main installer. Installing Sql Server Express can take 5 to 20 minutes.
How can I get the percent progress of a Sql Server Express install?
My current fallback position is a while() loop around the WaitForExit() call on the install process, with a timeout of 1000ms, and then I do the old 'print out a dot to indicate I'm not dead' trick.
My code looks roughly like this:
var installerProcess = new Process();
// process configuration deleted for brevity...
installerProcess.OutputDataReceived += (sender, args) => Log.Info(args.Data);
installerProcess.Start();
do
{
Log.Write(".");
} while (!installerProcess.WaitForExit(1000));
Is there anything that the Sql Express installer is doing that I could monitor from within this loop? I'm already skimming the stdout.
Or is there a better way to do an embedded install of Sql Server Express that would allow me to show the actual progress to my customers?
I found one post on this on a Microsoft forum (http://social.msdn.microsoft.com/Forums/hu-HU/sqlexpress/thread/eceeab4e-aebd-4ff9-974b-59b951fcdc3a), but I found the answer of "It can't be done because it's running out of process" unsatisfactory. If Sql Server Express is sticking any kind of progress indicator anywhere out there, I ought to be able to monitor it.