SCCM 2007 : SMS_MP_CONTROL MANAGER failed to install.
Hi All, I have a simple SCCM SP2 R2 environemnt setup and I'm unable to resolve an erorr I'm seeing in Site Status\System Status having installed my primary site server, which is installed on Server 2008 R2 SP1 SMS_MP_CONTROL_MANAGER SMS Site componenet manager failed to install this componenet on this site system. I have reviewed and comfirmed installation of WebDav within the IIS mmc. It is enabled for the default web site. The webdav settings are configured correctly. Allow [All users read access to All content] authoring rule exists [Allow property queries with infinite depth] is true [Allow Custom Properties] is false [Allow anonymous property queries] is true Allow [All users read access to All content] authoring rule should exists. Interestingly the MPsetup.log file seems to suggest the opposite! <06-23-2011 15:42:01> ==================================================================== <06-23-2011 15:42:01> SMSMP Setup Started.... <06-23-2011 15:42:01> Parameters: C:\PROGRA~2\MIE096~1\bin\i386\ROLESE~1.EXE /install /siteserver:POC-APP-01 SMSMP <06-23-2011 15:42:01> Installing Pre Reqs for SMSMP <06-23-2011 15:42:01> ======== Installing Pre Reqs for Role SMSMP ======== <06-23-2011 15:42:01> Found 1 Pre Reqs for Role SMSMP <06-23-2011 15:42:01> Pre Req MSXML60 found. <06-23-2011 15:42:01> No versions of MSXML60 are installed. Would install new MSXML60. <06-23-2011 15:42:01> Enabling MSI logging. msxml6_x64.msi will log to C:\Program Files (x86)\Microsoft Configuration Manager\logs\msxml6_x64MSI.log <06-23-2011 15:42:01> Installing C:\Program Files (x86)\Microsoft Configuration Manager\bin\x64\00000409\msxml6_x64.msi <06-23-2011 15:42:02> msxml6_x64.msi exited with return code: 0 <06-23-2011 15:42:02> msxml6_x64.msi Installation was successful. <06-23-2011 15:42:02> ======== Completed Installion of Pre Reqs for Role SMSMP ======== <06-23-2011 15:42:02> Installing the SMSMP <06-23-2011 15:42:02> Passed OS version check. <06-23-2011 15:42:02> IIS Service is installed. <06-23-2011 15:42:02> checking WebDAV configuraitons <06-23-2011 15:42:02> WebDAV settings is not setup appropriately <06-23-2011 15:42:02> [Allow property queries with infinite depth] should be true (false) <06-23-2011 15:42:02> [Allow Custom Properties] should be false (true) <06-23-2011 15:42:02> [Allow anonymous property queries] should be true (false) <06-23-2011 15:42:02> Allow [All users read access to All content] authoring rule should exist (exist) Ive been looking at this for quite some time and would really appreciate any suggestions to resolve this installation issue?
June 23rd, 2011 5:50pm

I don't recall ever seeing. "WebDAV settings is not setup appropriately" and it not being true. John Marcum | http://myitforum.com/cs2/blogs/jmarcum/|
Free Windows Admin Tool Kit Click here and download it now
June 23rd, 2011 6:02pm

See if the Webdav changes made it to \System32\inetsrv\config\schema\WEBDAV_schema.xmlTorsten Meringer | http://www.mssccmfaq.de
June 24th, 2011 10:00am

Hi, Please check if the “SMS_MP“ site is present in IIS. If "SMS_MP" exists, remove the website: 1) Open IIS console 2) Expand the website that is used for hosting SCCM which is "Default Web Site" (this is the case if no additional configuration was done during the installation). 3) See if you can locate the web site called "SMS_MP" (should not exist as install failed). 4) Once removed again double check the permissions on the root site "Default Web Site" or use script below to set permissions: @ECHO OFF REM Enable WebDav ECHO Enabling WebDav Appcmd set config "Default Web Site" /section:system.webServer/webdav/authoring /enabled:"True" /commit:apphost ECHO. REM Add authoring rule ECHO Adding Authoring Rule AppCmd set config "Default Web Site" /section:system.webServer/webdav/authoringRules /+[users='*',path='*',access='Read'] /commit:apphost ECHO. REM Change properties ECHO Configuring WebDav Properties Appcmd set config "Default Web Site" /section:system.webServer/webdav/authoring /fileSystem.allowHiddenFiles:"True" /commit:apphost appcmd set config "Default Web Site" /section:system.webServer/webdav/authoring /properties.allowAnonymousPropfind:"True" /properties.allowInfinitePropfindDepth:"True" /properties.allowCustomProperties:"False" /commit:apphost AppCmd set config "Default Web Site/" /section:system.webServer/security/requestFiltering /fileExtensions.applyToWebDAV:false /commit:apphost ECHO. ECHO Configuration Completed!! 5) Delete the "ConfigMgr management point" from Site Database -> Site Mangement -> YOURSITE -> Site Settings -> Site Systems -> YourSiteServer by right-clicking and choose "delete". 6) Verify if the uninstall was successful by checking "MPSetup.log" file, you should see a uninstall successful msg. 7) Add back the ConfigMgr Management Point. If the site “SMS_MP“ is not present you can complete the rest of the steps like this: 1) If User Account Control is enabled, please disable it. 2) Remove the Management Point role from the SCCM Server. 3) Run CCMClean /mp 4) Remove BITS from the 'Remove Features' option in the Server Manager. 5) Uninstall the WebDav Publishing from "Remove Role Services" from the IIS role. 6) Reboot the Server (Important) 7) Re-install WebDav from "Add Role Service". 8) Configure WebDav and BITS using the article: http://technet.microsoft.com/en-us/library/cc431377.aspx Recommend that you double check permissions to be sure script did what it should. Please verify that the WEBDAV_schema.xml file has been successfully updated with the WebDAV configuration: C:\Windows\System32\inetsrv\config\schema\WEBDAV_schema.xml The following lines should be checked and configured like this: <element name="properties"> <attribute name="allowAnonymousPropfind" type="bool" defaultValue="true" /> <attribute name="allowInfinitePropfindDepth" type="bool" defaultValue="true" /> <attribute name="allowCustomProperties" type="bool" defaultValue="false" /> If you have changed some of the settings the IIS service must be restarted. 9) Once WebDAV is configured add BITS from "Add Features" in server Manger. 10) Add the Management Point role back to the SCCM server. If installation is completed successfully you should now see the "SMS_MP" site under the "Default Web Site" and your management point should be working. Regards, Sabrina This posting is provided "AS IS" with no warranties or guarantees, and confers no rights. |Please remember to click Mark as Answer on the post that helps you, and to click Unmark as Answer if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
Free Windows Admin Tool Kit Click here and download it now
June 28th, 2011 9:18am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics