0

I am trying to launch a Lync-2013 app from the Windows Phone 8 app that I am developing.

I will be passing the number that lync client will call.

Does anyone know how to do this?

Bridge
  • 29,818
  • 9
  • 60
  • 82
Danish Subhu
  • 73
  • 1
  • 7

1 Answers1

0

You can try the lync: protocol to activate the app:

Windows.System.Launcher.LaunchUriAsync(new Uri("lync:<sip:user1@hotmail.com>"));
Josue Yeray
  • 1,163
  • 1
  • 11
  • 12
  • Thanks Josue I was able to launch the Lync app. but how can I pass extra parameters like suppose if some one has already logged in lync so directly he can make a call . Can u please give me some any references where I can look for all the possible scenarios. Thanks man – Danish Subhu Oct 28 '13 at 05:14
  • Hi Danish! I can't test this as my office365 account doesn't want to work with Lync for Windows Phone, but here you have a lot of info about launching lync: http://technet.microsoft.com/en-us/library/gg398376.aspx – Josue Yeray Oct 28 '13 at 07:07
  • Well Josue i have already visited that Lync. Can u tell me that how we check that Lync is installed or not in wp8 – Danish Subhu Oct 28 '13 at 10:39
  • I don't think you can do that. You only launch the Uri, if no app is installed who can handle it, the phone ask to search in the store. But you can't detect if another app is installed already in the system. – Josue Yeray Oct 28 '13 at 11:11