Hi guys,
Just want to ask your idea on how I can launch a wizard after I install my application. I need this wizard to launch right after I install my application to configure/initialize my application settings. I have created an installer before but have never try to add a wizard. Hope you can give me some ideas on how to do it.
Thanks for all the help.
Hello guys,
I was able to do it. I just create an installer class and overrides the Commit method. I paste the code below if someone needs it.
public override void Commit(System.Collections.IDictionary savedState)
{
base.Commit(savedState); Process p = new Process();
p.StartInfo.FileName = Context.Parameters["INSTALLDIR"] + "AppsToLaunch.exe"; p.StartInfo.UseShellExecute = false; p.StartInfo.RedirectStandardOutput =
p.StartInfo.UseShellExecute =
p.StartInfo.RedirectStandardOutput =
}