Lync Server 2013 UCWA功能&IE增强关闭&Silverlight安装

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Lync Server 2013 UCWA功能&IE增强关闭&Silverlight安装相关的知识,希望对你有一定的参考价值。

Silverlight 安装
在已经部署好的Lync Server 2013 前端服务器下载Silverlight。
下载地址为:https://go.microsoft.com/fwlink/?LinkID=149156&v=5.0
1.下载完成后,运行此程序
技术分享图片
2.选择立即安装
技术分享图片
3.下一步
技术分享图片
4.关闭
技术分享图片
IE增强功能关闭
将下面的脚本复制保存PowerShell脚本,在Lync Server 2013 前端服务器运行,关闭前端服务器上的IE增强功能。
禁用IE增强功能
技术分享图片

function Disable-InternetExplorerESC {
    $AdminKey = "HKLM:\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A7-37EF-4b3f-8CFC-4F3A74704073}"
    $UserKey = "HKLM:\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A8-37EF-4b3f-8CFC-4F3A74704073}"
    Set-ItemProperty -Path $AdminKey -Name "IsInstalled" -Value 0
    Set-ItemProperty -Path $UserKey -Name "IsInstalled" -Value 0
    Stop-Process -Name Explorer
    Write-Host "IE Enhanced Security Configuration (ESC) has been disabled." -ForegroundColor Green
}
Disable-InternetExplorerESC

启用IE增强功能
技术分享图片

function Enable-InternetExplorerESC {
    $AdminKey = "HKLM:\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A7-37EF-4b3f-8CFC-4F3A74704073}"
    $UserKey = "HKLM:\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A8-37EF-4b3f-8CFC-4F3A74704073}"
    Set-ItemProperty -Path $AdminKey -Name "IsInstalled" -Value 1
    Set-ItemProperty -Path $UserKey -Name "IsInstalled" -Value 1
    Stop-Process -Name Explorer
    Write-Host "IE Enhanced Security Configuration (ESC) has been enabled." -ForegroundColor Green
}
Enable-InternetExplorerESC

UCWA功能开启
在Lync Server 2013 的安装目录中运行Bootstrapper.exe,开启UCWA功能。
%ProgramFiles%\Microsoft Lync Server 2013\Deployment\Bootstrapper.exe

  1. 进入Lync Server 2013 安装目录的Deployment文件夹中
    技术分享图片
    2.运行Bootstrapper.exe程序
    技术分享图片
cd ‘C:\Program Files\Microsoft Lync Server 2013\Deployment‘
.\Bootstrapper.exe

以上是关于Lync Server 2013 UCWA功能&IE增强关闭&Silverlight安装的主要内容,如果未能解决你的问题,请参考以下文章

删除通过 UCWA 为过期应用程序安排的 Lync 2013 会议

通过 ucwa lync 2013 发送消息

Outofbox SharePoint Presence Control 以使用 UCWA Lync API

我们可以用 UCWA API (Lync) 做啥?以及我们不能用 UCWA API 做啥?

如何在 UCWA 1.0 API 中接受 Lync 对话邀请

是否可以使用 Lync UCWA 发送文件(图像文件)或与其他用户共享您的桌面/视口?