Archive
System Centre 2012 Prerequisites
Below is the list of all the prerequisites for System Centre 2012 along with the steps on how to get the required files
Microsoft.NET Framework 4 Extended
- Just click on the download link
Microsoft Report Viewer Redistributable 2008
- Click on the download link, you will need to put it in a separate folder from the next item since both have the same filename
Microsoft Report Viewer Redistributable 2010
- Click on the download link, you will need to put it in a separate folder from the above item since both have the same filename
Microsoft SQL Server 2008 R2
Microsoft SQL Server 2008 R2 Native Client
- Just click on the download link
Windows Automated Installation Kit
- Just click on the download link
Microsoft SQL Server 2008 R2 Analysis Management Objects
- Just click on the download link
Microsoft SQL Server 2008 R2 Command Line Utilities
- Just click on the download link
Microsoft SQL Server 2008 R2 Service Pack 1
- Click on the download link
- Extract all the files into a folder, point to the folder
Microsoft SQL Server 2008 R2 Cumulative Update 4
- Click on the download link to request for the actual links to be emailed to you
- It is the one which is about 350MB
- Once you download the file (441824_intl_x64_zip), unzip it to extract out the executable file
- Extract the file (SQLServer2008R2-KB2633146-x64.exe) in the executable file into another folder
- Point to this folder
System Centre 2012 Unified Installer : Fix for The WinRM settings are not configured correctly
When installing System Centre 2012 Unified Installer on a Windows 2008 R2 machine, you might encounter the following error
To fix this, first ensure that your administrator account has a password.
Next fire up a command prompt with Administrator rights and run the following commands
reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v LocalAccountTokenFilterPolicy /t REG_DWORD /d 1 /f
>reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v LocalAccountTokenFilterPolicy /t REG_DWORD /d 1 /f
The operation completed successfully.
winrm qc -q
>winrm qc -q
WinRM is not set up to receive requests on this machine.
The following changes must be made:
Start the WinRM service.
WinRM has been updated to receive requests.
WinRM service started.
WinRM is not set up to allow remote access to this machine for management.
The following changes must be made:
Create a WinRM listener on
HTTP://*
to accept WS-Man requests to any IP on this
machine.
Enable the WinRM firewall exception.
WinRM has been updated for remote management.
Created a WinRM listener on
HTTP://*
to accept WS-Man requests to any IP on this
machine.
WinRM firewall exception enabled.
winrm set winrm/config/service/auth @{CredSSP="True"}
>winrm set winrm/config/service/auth @{CredSSP="True"}
Auth
Basic = false
Kerberos = true
Negotiate = true
Certificate = false
CredSSP = true
CbtHardeningLevel = Relaxed
winrm set winrm/config/winrs @{AllowRemoteShellAccess="True"}
>winrm set winrm/config/winrs @{AllowRemoteShellAccess="True"}
Winrs
AllowRemoteShellAccess = true
IdleTimeout = 180000
MaxConcurrentUsers = 5
MaxShellRunTime = 2147483647
MaxProcessesPerShell = 15
MaxMemoryPerShellMB = 150
MaxShellsPerUser = 5
winrm set winrm/config/winrs @{MaxMemoryPerShellMB="2048"}
>winrm set winrm/config/winrs @{MaxMemoryPerShellMB="2048"}
Winrs
AllowRemoteShellAccess = true
IdleTimeout = 180000
MaxConcurrentUsers = 5
MaxShellRunTime = 2147483647
MaxProcessesPerShell = 15
MaxMemoryPerShellMB = 2048
MaxShellsPerUser = 5
winrm set winrm/config/client @{TrustedHosts="*"}
>winrm set winrm/config/client @{TrustedHosts="*"}
Client
NetworkDelayms = 5000
URLPrefix = wsman
AllowUnencrypted = false
Auth
Basic = true
Digest = true
Kerberos = true
Negotiate = true
Certificate = true
CredSSP = false
DefaultPorts
HTTP = 5985
HTTPS = 5986
TrustedHosts = *
winrm set winrm/config/client/auth @{CredSSP="True"}
>winrm set winrm/config/client/auth @{CredSSP="True"}
Auth
Basic = true
Digest = true
Kerberos = true
Negotiate = true
Certificate = true
CredSSP = true
You can now try installing System Centre 2012 again.