Click here to Skip to main content
15,885,244 members
Articles / Silverlight

How to Install a Silverlight Out-of-Browser Application (XAP) Silently?

Rate me:
Please Sign up or sign in to vote.
4.81/5 (7 votes)
22 Apr 2010CPOL3 min read 60.6K   11   4
Silverlight 4 now has support for installing out-of-browser application silently. In this article, I will describe about it.

Introduction

Silverlight 4 now has support for installing out-of-browser application silently. If you are new to Silverlight Out-of-Browser application development, you can read the complete guide in "How can you implement the Silverlight 3 Out Of Browser feature?" Also have a look into the following article to get the basic understanding of Silverlight 4 Out Of Browser feature "Silverlight 4: How can I create customized OOB Window?"

Hope, you read my previous articles on the Out of Browser application development and have confidence building applications. In those articles, you have seen that I wrote code for installing the OOB application from the browser window. Now imagine some scenarios where you want to install the Silverlight application (XAP) using your Installer silently without the user interaction. How can you do that? Silverlight 4 now came up with that feature for you. In this article, I will describe it and after reading it, you will be able to install your Silverlight OOB Application (XAP) silently in your local drive and run it from the desktop or startmenu without opening the browser.

How Silverlight Out-of-Browser Application Works?

Before going to implement the feature, we will first discuss how the Silverlight OOB application works. When you install Silverlight plug-in, it also installs a .exe file named "sllauncher.exe" which you can find in your "Program Files\Microsoft Silverlight\" directory. This EXE file now has the capability to install your Silverlight OOB application silently without opening the browser window. If you have already installed your OOB application, it will create a shortcut to launch the application from desktop or start menu. Right click on the shortcut & go to its properties. You will notice that the target location is set to "Microsoft Silverlight" and the target is set to something similar to the following line:

"C:\Program Files\Microsoft Silverlight\sllauncher.exe" 744317312.localhost

Image 1

That is responsible for launching the XAP file as your Out-of-Browser application.

Script for installing Out-of-Browser application silently

Let's come to write some scripts to install your XAP silently as out of browser Silverlight application. Hope, you have a Silverlight application configured as out of browser. Build the application & you will get the output file (.XAP) in the ClientBin of the web application. Copy this file to your local drive in a specific folder (say, C:\MySilverlightApps\). I am using my Chromeless Window Demo Application and hence the complete path of the XAP is: "C:\MySilverlightApps\Silverlight4.OOB.ChromelessWindow.Demo.xap".

Now open your Notepad and write the following code in a single line:

"C:\Program Files\Microsoft Silverlight\sllauncher.exe"  
/install:"C:\MySilverlightApps\Silverlight4.OOB.ChromelessWindow.Demo.xap"  
/origin:http://www.kunal-chowdhury.com/private/apps/ClientBin/
Silverlight4.OOB.ChromelessWindow.Demo.xap  /shortcut:desktop+startmenu  /overwrite   

code.png

Overview of sllauncher.exe Parameters

You have to pass the location of your XAP file as a parameter value to the "/install" flag.

You can specify the URL for future update location of the application by setting the "/origin" flag. When you call the CheckAndDownloadUpdateAsync() method from code, it will try to get the update from the specified location.

You can specify the shortcut location of the application by setting the value to the "/shortcut" flag. If you just set desktop or startmenu as the value to the flag, it will create the shortcut in desktop or startmenu depending on the parameter you set. If you use "desktop+startmenu" as the value to the parameter, it will install it both in the desktop and startmenu of your operating system.

Conclusion

You can use these feature to install Silverlight OOB Application from CD/DVD to your user's PC without any user interaction to open the application using browser window and manually install to their PC.

History

  • 22nd April, 2010: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
India India

Kunal Chowdhury is a former Microsoft "Windows Platform Development" MVP (Most Valuable Professional, 2010 - 2018), a Codeproject Mentor, Speaker in various Microsoft events, Author, passionate Blogger and a Senior Technical Lead by profession.

He is currently working in an MNC located in India. He has a very good skill over XAML, C#, Silverlight, Windows Phone, WPF and Windows app development. He posts his findings, articles, tutorials in his technical blog (www.kunal-chowdhury.com) and CodeProject.


Books authored:


Connect with Kunal on:





Comments and Discussions

 
QuestionHow can use this script for CD/DVD? Pin
Emre Gökberk5-Jun-12 22:23
Emre Gökberk5-Jun-12 22:23 
AnswerRe: How can use this script for CD/DVD? Pin
Kunal Chowdhury «IN»6-Jun-12 3:49
professionalKunal Chowdhury «IN»6-Jun-12 3:49 
QuestionXAP Singing while Auto Update Pin
Dinesh Jethva DJ17-Nov-11 19:11
Dinesh Jethva DJ17-Nov-11 19:11 
Questioninstall directly from server instead "C:\MySilverlightApps\" Pin
jahedur.rahman30-Oct-11 22:08
jahedur.rahman30-Oct-11 22:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.