in cases where I am using Lync 2010 SDK (which depends on having the Lync 2010 client being installed and operational) in a web application and that client is closed, can I using the Lync 2010 SDK to start client application ?

link|improve this question

25% accept rate
feedback

1 Answer

If you have Lync setup for suppressed mode then you can call the BeginInitialize method on the LyncClient object to start up Lync in suppressed mode (aka no user interface).

This documentation describes the BeginInitialize method. Below is an example in C#:

LyncClient lyncClient = LyncClient.GetClient();

if (lyncClient.InSuppressedMode && 
    lyncClient.State == ClientState.Uninitialized)
{
  lyncClient.BeginInitialize(result => lyncClient.EndInitialize(result), 
    "Starting Lync");
}
link|improve this answer
what if i dont want to use suppression mode ? I still want users to be able to use Lync through its client interface ? – Ibrahim Abdulkarim Jan 1 at 9:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.