Install SCOM 2012 Pre requisites
Today I was installing SCOM 2012 on a Windows Server 2012 std server. This is how you easily install the necessary pre requisites for SCOM 2012 : Use servermanager to add .NET framework 3.5, then.. ..Launch PowerShell with administrative privileges. Run the following command :
|
1 |
Import-Module ServerManager |
Followed by the following commands :
|
1 2 3 4 5 6 |
Add-WindowsFeature NET-Framework-Core, Web-Static-Content,Web-Default-Doc, Web-Dir-Browsing,Web-Http-Errors,Web-Http-Logging, Web-Request-Monitor,Web-Filtering,Web-Stat-Compression, AS-Web-Support,Web-Metabase,Web-Asp-Net, Web-Windows-Auth –restart |
and
|
1 |
c:\windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -r |
[…]