I’m trying to implement a function for ending the current conversation for all participants using Microsoft Lync SDK for Skype for business. The job it’s supposed to be done like this:
conversation.End();
But it only closes the window of the participant that started the meeting. Is there another way to do it?
The "End" method just leave the conference call as you say.
There is no documented API to "End Meeting".
If you really want to do this programmatically then you will need to use something like Windows Automation to select the "More options" button then then select the "End Meeting" button.
Here is a example method for using windows automation to click the End Meeting button.