Monday, April 26, 2010

How to install a Silverlight Out-of-Browser application (XAP) silently?

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 confident building application. In those articles you have seen that I wrote code for installing the OOB application from 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 can 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 an .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 it's 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

Read more: Codeproject

Posted via email from jasper22's posterous