4

Is it possible to open an IM window on Microsoft Lync from a webpage with a defined message? Something like:

<a href="im:?body=My Message">Lync</a>

The email equivalent would be:

<a href="mailto:?body=My Message">E-Mail</a>
Chun
  • 1,968
  • 3
  • 17
  • 18
  • possible duplicate of [Is it possible to open a new Lync conversation from a webpage?](http://stackoverflow.com/questions/10704811/is-it-possible-to-open-a-new-lync-conversation-from-a-webpage) – Guido Preite May 19 '14 at 06:41

1 Answers1

8

You can bring up the IM window, but you can't pre-define the message.

You bring up the IM with

<a href="im:<sip:someone@domain.com>">Go</a>

Ref: http://technet.microsoft.com/en-gb/library/gg398376.aspx

Tom Morgan
  • 2,355
  • 18
  • 29