Lync Server 2013 UCWA功能&IE增強關閉&Silverlight安裝
阿新 • • 發佈:2018-05-03
UCWA IE增強 IE增強關閉 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增強功能
在已經部署好的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
- 進入Lync Server 2013 安裝目錄的Deployment文件夾中
2.運行Bootstrapper.exe程序
cd ‘C:\Program Files\Microsoft Lync Server 2013\Deployment‘
.\Bootstrapper.exe
Lync Server 2013 UCWA功能&IE增強關閉&Silverlight安裝