1

I'm trying to uninstall out-of-browser app. I'd read a manual, and found the following command:

   1: "%ProgramFiles%\Microsoft Silverlight\sllauncher.exe" 

   2:     /uninstall 

   3:     /origin:http://www.silverlight.net/content/samples/apps/facebookclient/ClientBin/Silverface.xap

what is /origin?

richj
  • 7,499
  • 3
  • 32
  • 50
Eugeny89
  • 11
  • 2
  • see this http://stackoverflow.com/questions/2735621/uninstall-out-of-browser-silverlight-application-programmatically – JSJ Dec 24 '10 at 13:24
  • well,.. I think that's about a bit different situation. Can someone write a command to uninstall an App – Eugeny89 Dec 24 '10 at 14:55

1 Answers1

1

Switch /origin is the original URL that you downloaded/installed/run that Silverlight xap file from.

In your given example it is:

http://www.silverlight.net/content/samples/apps/facebookclient/ClientBin/Silverface.xap

That is the place it will look for updates if available.

decyclone
  • 30,394
  • 6
  • 63
  • 80
  • You can find the url in \AppData\Local\Microsoft\Silverlight\OutOfBrowser\\metadata file under FinalAppUri entry. – Grasshopper Apr 05 '19 at 08:30