ITExperience.NET Rotating Header Image

Posts Tagged ‘sccm’

The SQL server name specified during setup must match the name… in SCCM 2012

The following error will occur during the installation of SCCM 2012 if you ever changed the system name after the installation of SQL Server:

The SQL server name specified during setup must match the Name in sys.servers of the SQL server  

image The SQL server name specified during setup must match the name… in SCCM 2012

To solve this issue, open the Microsoft SQL Server Management Studio, and run the following query:

EXEC sp_dropserver ‘your old server name’
GO

EXEC sp_addserver ‘your current server name’, ‘local’
GO

To find out what your old computer name was, according to SQL, you can open the logfile of Configuration Manager Setup at c:\ConfigMgrSetup.log.… Read the rest

Hide Operating System Deployments for users in SCCM 2007 client

If you have deployed an operating system to a system with System Center Configuration Manager 2007 (SCCM 2007), the task sequence is still being advertised to the computer. This means that a user is able to open the “Run Advertised Programs” window and re-run the Operating System Deployment.… Read the rest

SCCM error 5443: MP has rejected a message from client X because it was signed with a public key that does not match …

In SCCM 2007, the following error may occur when the public key on the client and the key published in the database on the SCCM server are not the same (screenshot at end of this post).

Date: 30-08-2010
Time: 11:18:08:667
Site code: %xyz%
System: %sccm server name%
Source: SMS Server
Component: SMS_MP_CONTROL_MANAGER
Type: Milestone
Severity: Warning
Message ID: 5443
Process ID: 2952
Thread ID: 10464
Description: MP has rejected a message from client GUID:773CDAE8-3447-4861-9FAF-1B1AD9FEB502 because it was signed with a public key that does not match the key published in the database.

Read the rest

Error code 0×80091007 during Task Sequence

After running a task sequence in the SCCM client, the following error may occur:

 Error code 0x80091007 during Task Sequence

Task Sequence Error
Running: Install <software title / os title>
Task sequence: Install <software title / os title> has failed with the error code (0×80091007). For more information, please contact your system administrator or helpdesk operator

This error code stands for the message that “the hash value is not correct”.… Read the rest