lync

Creating a conference with only one user via Lync api - Meet Now

风格不统一 提交于 2019-12-05 15:47:59
I have been trying to build an application in the Lync sdk. What I want is to simulate a conference room environment where - the first user that comes in initiates a conference and puts the conference uri on the server for subsequent users to join - basically essentially the same functionality that the MEET NOW option of MS's Lync client exposes. However, what i have found out is that both the methods - beginstartconversation() in _Automation class and _LyncClient.ConversationManager.AddConversation(), only initiate P2P conversation nd u get a conference uri only when more than 2 users are

How can I read a Lync conversation file containing HTML?

↘锁芯ラ 提交于 2019-12-05 13:46:26
I'm having trouble reading a local file, into a string, in c#. Here's what I came up with till now: string file = @"C:\script_test\{5461EC8C-89E6-40D1-8525-774340083829}.html"; using (StreamReader reader = new StreamReader(file)) { string line = ""; while ((line = reader.ReadLine()) != null) { textBox1.Text += line.ToString(); } } And it's the only solution that seems to work. I've tried some other suggested methods for reading a file, such as: string file = @"C:\script_test\{5461EC8C-89E6-40D1-8525-774340083829}.html"; string html = File.ReadAllText(file).ToString(); textBox1.Text += html;

Is it possible to open a new Lync conversation from a webpage?

落花浮王杯 提交于 2019-12-05 00:51:02
问题 I would like to open a new conversation in a users Lync client, with a pre-determined message text but with the reciepients of the message to be selected by the user, with this process starting from the user clicking a link on a web site. Is that possible? 回答1: Part of the problem here is that you can't open a conversation window without knowing who you want to start a conversation with, if that makes sense. From a web-page, there are various different things you could do to start an IM with

lync server 2013通讯簿问题

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-04 13:36:44
最近做了1个从lync server 2010升级到2013的项目,在共存期间,lync server 2013池中的用户无法下载通讯簿,此问题折磨了我好几天,不过最终搞定了,功夫不负有心人啊。言归正转,下面我把此问题的处理过程分享给大家,希望对大家有所帮助 问题描述: lync server 2013池中的用户登录lync客户端后,提示无法同步通讯簿,错误如下: 在lync server 2013前端服务器报以下错误,事件ID:21046 我通过POWERSHELL命令:test-csaddressbookservice测试报404错误 通过查看IIS日志,也是404错误: 处理过程: 针对以上报错,初步判断跟共享文件夹权限有关,但详细的检查共享文件夹后,该有的权限都在,而且我把everyone的完全控制权限都加上了,还是报错。没办法了,把ABFiles下面的文件全部删除,重新生成,过程如下: 删除ABFiles文件夹下的00000000-0000-0000-0000-000000000000文件夹 在lync server 2013 前端服务器,打开powershell,执行命令:Update-CsUserDatabase 命令重新生成通讯簿文件,等5分钟左右再执行命令:Update-CsAddressBook -Verbose,命令执行完成后,打开事件查看器发现

Creating a conference with only one user via Lync api - Meet Now

匿名 (未验证) 提交于 2019-12-03 08:48:34
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I have been trying to build an application in the Lync sdk. What I want is to simulate a conference room environment where - the first user that comes in initiates a conference and puts the conference uri on the server for subsequent users to join - basically essentially the same functionality that the MEET NOW option of MS's Lync client exposes. However, what i have found out is that both the methods - beginstartconversation() in _Automation class and _LyncClient.ConversationManager.AddConversation(), only initiate P2P conversation nd u get

How to save Lync conversation history when Corp has blocked this feature?

限于喜欢 提交于 2019-12-03 04:55:49
问题 I am using Lync 2010 (4.0.7577.4356), which we use on my small development team for IM'ing. Lots of technical Q&A are handled through this program and lots of other items that need to be documented. Unfortunately, our parent company has a policy that turns off "Converation History", so once the window is closed, it's gone. I've done a fair bit of research and I haven't found a way to save this data since the settings have been made at our parent Corporation's level (through Active Directory,

How to save Lync conversation history when Corp has blocked this feature?

南笙酒味 提交于 2019-12-02 18:12:18
I am using Lync 2010 (4.0.7577.4356), which we use on my small development team for IM'ing. Lots of technical Q&A are handled through this program and lots of other items that need to be documented. Unfortunately, our parent company has a policy that turns off "Converation History", so once the window is closed, it's gone. I've done a fair bit of research and I haven't found a way to save this data since the settings have been made at our parent Corporation's level (through Active Directory, or whatever). This is information that we need and even my boss has tried finding a way to save this

Is it possible to set call forwarding via the Lync SDK (2013 or other)?

雨燕双飞 提交于 2019-12-01 12:02:14
问题 I work for an IS department in a large institution. The Lync servers that handle our telephones are handled by another department, and any solution that requires cooperation from them is not viable. This rules out any solutions that require extra privileges, running from the Lync servers, SEFAUtil, etc. My personal Lync 2013 client has some abominable GUI menu where I can forward my desk phone to another number. I know therefor that it is possible, in theory. I have powershell code that (with

Disable Lync Click to Call detecting numbers in a web page

二次信任 提交于 2019-11-30 11:34:51
问题 Is there a way to stop Microsoft Lync from detecting phone numbers in a web page, and adding its click to call icon to that phone number in Internet Explorer? Obviously the client can disable this functionality in Internet Explorer, however I would like to disable this for all who visit a particular website, as it is not playing nicely with embedded fonts in use on the website. To do this for Skype I would add the following meta tag into my web page's header: <meta name="SKYPE_TOOLBAR"

Disable Lync Click to Call detecting numbers in a web page

孤街醉人 提交于 2019-11-30 00:29:06
Is there a way to stop Microsoft Lync from detecting phone numbers in a web page, and adding its click to call icon to that phone number in Internet Explorer? Obviously the client can disable this functionality in Internet Explorer, however I would like to disable this for all who visit a particular website, as it is not playing nicely with embedded fonts in use on the website. To do this for Skype I would add the following meta tag into my web page's header: <meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" /> Thanks, Peter CBono I've found a few options, but none are as