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 ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can do without using Lync SDK,
Instead you can try out this
bool isRunning = Process.GetProcessesByName(“Communicator”)
.FirstOrDefault(p => p.MainModule.FileName.StartsWith(@”C:\Program Files (x86)\Microsoft Lync”)) != default(Process);
if(!isRunning)
Process.Start(“Communicator”);
May be this will be helpfull to you.
thnks and regards.