Quantcast
Channel: wixsharp Discussions Rss Feed
Viewing all articles
Browse latest Browse all 1354

New Post: Option to launch app after close

$
0
0
The simplest approach is to avoid inconvenience of the raw WiX and use Wix# ManagedSetup.
void finish_Click(object sender, System.EventArgs e)
{
    if (runAfter.Checked)
        try
        {
            Process.Start(Path.Combine(MsiRuntime.InstallDir, "myproduct.exe");
        }
        catch { }
    Shell.Exit();
}

Viewing all articles
Browse latest Browse all 1354

Trending Articles