I'm planning to build a download manager application and would like to be able to launch the application when a user clicks a button the site. The application would obviously already need to be installed on the client machine.

There are a few reasons why this needs to be written using Silverlight, but they're not really relevant to the question. I only mention it so that people don't suggest that I use another technology.

link|improve this question
feedback

3 Answers

up vote 2 down vote accepted

I think that is not possible according to this post post 1 and to other post. But I don't know if MS will change that in the last version of SL 4

link|improve this answer
feedback

Doing a bit of a mash up from two other posts [1] and [2].

But of course this will only work for Windows not Mac. There you will have to fallback to the @michael-s-scherotter style solution.

private void Button_Click(object sender, RoutedEventArgs e)
{
    if (Application.Current.HasElevatedPermissions && System.Windows.Interop.ComAutomationFactory.IsAvailable)
    {

        string run = "\""%ProgramFiles%\\Microsoft Silverlight\\sllauncher.exe"\" /emulate:"Silverface.xap" /origin:\"http://www.silverlight.net/content/samples/apps/facebookclient/ClientBin/Silverface.xap\" /overwrite";
        dynamic cmd = ComAutomationFactory.CreateObject("WScript.Shell");
        cmd.Run(run, 1, true);

    }
}
link|improve this answer
feedback

Yes. Here is an example: http://www.silverlight.net/content/samples/apps/facebookclient/sfcquickinstall.aspx

link|improve this answer
Thanks for answering. The solution is not quite what I'm looking for. It only shows You have already installed this application, please launch it from your shortcut. To uninstall/reinstall please right click here and choose "Remove this application...". What I would like to do is for the OOB application to start when the user clicks on a button on the web page or in the in application running in browser.. – marcnicol Jun 2 '10 at 15:21
That is because you've already installed the app. You can create a SL app that when in-browser just shows an install button but when it is running OOB, it shows the full UI. – Michael S. Scherotter Jun 2 '10 at 15:43
I want to launch an application that has already been installed. – marcnicol Jun 2 '10 at 15:54
feedback

Your Answer

 
or
required, but never shown

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