ConfigMgr ACT Connector and ACT 5.6

Some of the reports in ConfigMgr may not work connecting to ACT.. here’s a sql fix to run on the ACT db

GRANT CONNECT to guest

GRANT SELECT ON Application_Report_Complete_vw to guest

GRANT SELECT ON Applications_vw to guest

GRANT SELECT ON Machine_Installed_App_vw to guest

GRANT SELECT ON Machines_vw to guest

GRANT SELECT ON Deployment_OS_vw to guest

SMS Site Component Manager Does Not Install on Windows 2008 R2

Status message shows Component [SMS_MP_CONTROL_MANAGER] could not install correctly on server and keeps stating WebDAV not configured correctly even though you set it correctly in IIS.

The issue is in Windows 2008 R2, the XML file WEBDAV_schema.xml does not update as needed. You will need to update the file manually which is located at C:\Windows\System32\inetsrv\config\schema.

  • Stop the IIS service
  • Find the file and take ownership as well as give youself full rights and remove the Ready only attribute.
  • Find and update the file with following values

    <attribute name=”allowAnonymousPropfind” type=”bool” defaultValue=”true” />
    <attribute name=”allowInfinitePropfindDepth” type=”bool” defaultValue=”true” />
    <attribute name=”allowCustomProperties” type=”bool” defaultValue=”false” />

  • Start the IIS service
  • Start the SMS Component Manager
  • Check the status messages

 

What version of Configuration Manager do I need, and in what order? – Nexus SC: The System Center Team Blog – Site Home – TechNet Blogs

What version of Configuration Manager do I need, and in what order? – Nexus SC: The System Center Team Blog – Site Home – TechNet Blogs

via What version of Configuration Manager do I need, and in what order? – Nexus SC: The System Center Team Blog – Site Home – TechNet Blogs.

MDT fails to launch on IBM or Lenovo computers

I came across this issues where the Litetouch MDT scripts would not run on certain IBM or Lenovo computers (wscript.exe process exists right away, no MININT folder, no logs, etc.).  After researching, found that the IBM/Lenevo tool called Rescue and Recovery was blocking the scripts from running and creating the MININT folder in C: root.  Removal of his tool from the system, allowed the MDT to launch and work successfully.

Prevent Internet Explorer 8 from automatically installing

How to Prevent Internet Explorer 8 from automatically installing on computers running Microsoft Windows XP, Windows Vista, Windows Server 2003, and Windows Server 2008.

Add following to the registry (see Figure 1)

Keys: [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Setup\8.0]

Value Name: DoNotAllowIE80

Data Type: REG_DWORD

Value: 1


Figure 1

SCCM Training now available

Excerpts from the site

Using Configuration Manager 2007 to
Perform Your Most Common and
Critical Desktop Management Tasks

Microsoft System Center Configuration Manager comprehensively assesses, deploys, and updates servers, client computers, and devices – across physical, virtual, distributed and mobile environments. This course will take IT implementers down the path of understanding how Configuration Manager 2007 can be used to perform common tasks such as Operating System deployment, software distribution and update, asset tracking and intelligence, client health reporting and management, security, and network access protection.

http://technet.microsoft.com/en-us/systemcenter/cm/ff597934.aspx

GPO: Custom ADM to redirect Favorites for Windows XP

Custom ADM template to redirect Favorites for Windows XP workstations. Copy the text below to a notepad file and save with .adm extension. Import the ADM file into your GPO and change the path for your environment.

 

 

–Copy start below-

CLASS MACHINE

CLASS USER

    CATEGORY “Custom Policies”

    KEYNAME “Software\Microsoft\Windows\CurrentVersion\Policies”

        POLICY “Favorites”

            PART “Redirect Favorites” EDITTEXT

            KEYNAME “Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders”

            VALUENAME “Favorites”

            DEFAULT “H:\MY DOCUMENTS\Favorites”

            MAXLEN 50

            END PART

        END POLICY

    END CATEGORY

–Copy end above–