Скрипт подготовки ОС к установке Lync Server 2010
#Lync Server 2010 Software Requirements http://technet.microsoft.com/en-us/library/gg398686.aspx
#Ilya Kovrigin | 12:45 24.11.2011
#add Server Manager cmdlets
Import-Module ServerManager
# === FrontEnd ===
#add default web server feature
# Static Content
# Default Document
# HTTP Errors
# HTTP Logging
# Request Filtering
# Static Content Compression
# IIS Management Console
# Anonymous Authentication (This is installed by default when IIS is installed.)
Add-WindowsFeature Web-Server
#ASP.NET & features
# .NET Extensibility
# Internet Server API (ISAPI) Extensions
# ISAPI Filters
Add-WindowsFeature Web-Asp-Net
#Logging Tools
Add-WindowsFeature Web-Log-Libraries
#Tracing
Add-WindowsFeature Web-Http-Tracing
#Windows Authentication
Add-WindowsFeature Web-Windows-Auth
#IIS Management Scripts and Tools
Add-WindowsFeature Web-Scripting-Tools
#Client Certificate Mapping Authentication
Add-WindowsFeature Web-Client-Auth
#.NET Framework 3.5
Add-WindowsFeature NET-Framework-Core
# === Message Queuing for Monitoring Server or Archiving Server ===
Add-WindowsFeature MSMQ-Server
Add-WindowsFeature MSMQ-Directory
# WMV
dism.exe /online /add-package /packagepath:%windir%\servicing\Packages\Microsoft-Windows-Media-Format-Package~31bf3856ad364e35~amd64~~6.1.7601.17514.mum /ignorecheck