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



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://kunal-chowdhury.com/private/apps/ClientBin/Silverlight4.OOB.ChromelessWindow.Demo.xap
/shortcut:desktop+startmenu
/overwrite
  
Read the Complete Article @ DotNetSpark.com

Have a question? Or, a comment? Let's Discuss it below...

dhgate

Thank you for visiting our website!

We value your engagement and would love to hear your thoughts. Don't forget to leave a comment below to share your feedback, opinions, or questions.

We believe in fostering an interactive and inclusive community, and your comments play a crucial role in creating that environment.