Showing posts with label 2012. Show all posts
Showing posts with label 2012. Show all posts

Friday, January 18, 2013

MP Control Failed To Start

Error :


SMS_MP_CONTROL_MANAGER failed to start with 0x8004100e SMS_MP_CONTROL_MANAGER in MPCONTROL.LOG

Cause :


0x8004100e = WBEM_E_INVALID_NAMESPACE

Resolution :


To resolve above problem needs to check WMI Permissions or follow below steps.

1) Reboot Site Server. ( also Reboot Database server if installed separately. )  OR

2) Uninstall SCCM Client from Site Server.    OR

3) Open Command Prompt on Site server and type winmgmt /salvagerepository  command to refresh WMI Permission.   OR

4) Reset Site System will reinstall Management Point.

 

Friday, January 4, 2013

Facing Issue while running Report Builder in SCCM 2012

Facing Problem to run SQL Report builder Tool from SCCM 2012 Server.


Cause :

if you are using SQL 2008 R2 server for SCCM 2010 in your orgenization,

By default SCCM 2012 server configured to use report Builder 2.0 and SQL 2008 R2 uses Report Builder 3.0 version which needs to change.

Resolution : 

in order to resolve this issue needs to modify Registry value as mentioned below.

1. Go to RUN and Open Regedit.exe / regedit32.exe

2. \HKLM\Software\Wow6432Node\Microsoft\ConfigMge10\AdminUI\Reporting\ReportBuilderApplicationManifestName.

3. Change the Value from "ReportBuilder_2_0_0_0.application" to "ReportBuilder_3_0_0_0.application"

4. That's It!!!!






Portal Web Site Control Manager detected PORTALWEB is not responding to HTTP requests. The http status code and text is 500, Internal Server Error.

Facing Error accessing the Application Catalog Web Site on SCCM 2012.

Status Message Error in SCCM:
Component: SMS_PORTALWEB_CONTROL_MANAGER

Message ID: 8000

Description:

"Portal Web Site Control Manager detected PORTALWEB is not responding to HTTP requests. The http status code and text is 500, Internal Server Error."

Cause :

This issue occurs because the Applicationhost.config file for Windows Process Activation Service (WAS) has the following section defined, and this section is incompatible with the .NET Framework 4.0:
<add name="ServiceModel" type="System.ServiceModel.Activation.HttpModule, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" preCondition="managedHandler" />
This section should be defined as follows:
<add name="ServiceModel" type="System.ServiceModel.Activation.HttpModule, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" preCondition="managedHandler,runtimeVersionv2.0" />

This is caused by an issue with .Net 4.0, so perform the following on the Web Server hosting the Application Catalog Website Point (and also possibly the Application Catalog Web Service Point - In my tests, both roles are on the same system):

Resolution Steps :

1) Open Command Prompt ( cmd.exe ) on SCCM server or where you have installed Application Catalog Role installed.

2) Navigate to  below path

%windir%\Microsoft.NET\Framework\v4.0.30319
OR
%windir%\Microsoft.NET\Framework64\v4.0.30319 (on a 64-bit computer)

3) Run   "aspnet_regiis.exe /iru" Command.

4) that's It!!!!!!!


For more information please Go through below Microsoft Knowledgeable Article.

Related Technet article: http://support.microsoft.com/kb/2015129