Setup failed to determine whether a supported version of Microsoft Outlook is installed : Outlook Client Setup failed for Outlook 2010

You may receive the below mentioned error while installing Outlook Client for Outlook 2010 as shown below.




The Fix is as below:




Close the setup windows from the taskbar, and it will prompt for confirmation to close. Click "Yes". (Shown as below)








The setup will continue.




Once setup completed you could open the outlook and configure it. 


Remember the Rollup update 7 is most recommended and then you could install any latest Rollup updates. Currently Rollup Update 12 is available. 


Also Some Other posts says about setting registry key and it did not worked for me. The setting as below



[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSCRMClient]
"IgnoreChecks"=dword:00000001








New Microsoft Dynamics CRM VPC available for download for partners

The download requires partner authentication. 


It has 
Windows 2003 which expires on august 2011
Microsoft Dynamics CRM 4.0 with Rollup 11
Office 2010
SharePoint
Demo tools etc...


CRM 4 July 2010 VPC.part01.exe
CRM 4 July 2010 VPC.part02.rar
CRM 4 July 2010 VPC.part03.rar
CRM 4 July 2010 VPC.part04.rar

Validate a user name and password against active directory

The below code uses .Net framework 3.5 and is a console application


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.DirectoryServices.AccountManagement;

namespace MyConsoleApplication
{
    class Program
    {
        static void Main(string[] args)
        {
            // create a "principal context" - e.g. your domain (could be machine, too)
            using (PrincipalContext pc = new PrincipalContext(ContextType.Domain, "contoso"))
            {
                // validate the credentials
                bool isValid = pc.ValidateCredentials("brianc", "pass@word1");
                Console.WriteLine(isValid.ToString());
                Console.ReadLine();
            }
        }
    }
}