I want to end a group conversation in Microsoft Lync 2010 such that it deletes the people from the conversation and then terminates the Group Conversation.It can be done simply by clicking on People options in the window and then clicking on the "Remove everyone and end meeting button.But i want a Keyboard shortcut to do the same.Please help me.Thanks in advance.

有帮助吗?

解决方案

You just use the AutoIt Window Information Tool to find out the control handle and then you just write a script with an infinitive main loop While True with a Sleep(60*1000) in it, closing with WEnd. Before the loop, you should use HotKeySet("{Ctrl}{Alt}x", "removeAndExit") and the last thing you need is the Function removeAndExit() which is performing a ControlClick($windowHandle, "", $controlHandle, "primary") and finally the EndFunc.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top