Bevor die Installation des ConfigMgrs beginnen kann, müssen einige Features installiert werden. Dies ist eine recht mühselige Arbeit, da man im Server-Manager jedes Häkchen einzeln setzen muss. Zur Erleichterung der Feature-Installation habe ich folgendes Powershell-Skript geschrieben.

image

 

Installationsbefehl zur Installation des Microsoft .Net Frameworks
Da das Feature „Microsoft .Net Framework 3.5“ ebenfalls benötigt wird und dessen Installation aufgrund der fehlenden Quelldaten im installierten System etwas schwieriger ist, empfiehlt es sich dieses separat vorweg mit folgendem Installationsbefehl zu installieren. Wichtig dabei ist, dass die Installations-DVD / das Installations-ISO eingelegt ist (hier Laufwerk „D:\“).

Installationsbefehl

Dism.exe /online /enable-feature /featurename:NetFX3 /all /Source:D:\sources\sxs /LimitAccess

 

PowerShell-Skript zur Installation der erforderlichen Features

Get-Module servermanager
Install-WindowsFeature Web-Windows-Auth
Install-WindowsFeature Web-ISAPI-Ext
Install-WindowsFeature Web-Metabase
Install-WindowsFeature Web-WMI
Install-WindowsFeature BITS
Install-WindowsFeature RDC
Install-WindowsFeature NET-Framework-Features
Install-WindowsFeature Web-Asp-Net
Install-WindowsFeature Web-Asp-Net45
Install-WindowsFeature NET-HTTP-Activation
Install-WindowsFeature NET-Non-HTTP-Activ

Quellen:
Features:
http://technet.microsoft.com/en-us/library/gg682077.aspx#BKMK_SiteSystemRolePrereqs

.Net-Framework:
http://msdn.microsoft.com/en-us/library/hh506443(v=vs.110).aspx