您好,登錄后才能下訂單哦!
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
cd 'C:\Program Files\Microsoft Lync Server 2013\Deployment'
.\Bootstrapper.exe
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。