ServicePrincipalName (SPN) and SQL 2008 Failover Cluster
When installing a SQL 2008 Server Failover Cluster it is necessary to create SPN’s for the SQL Server Service Account. One way to accomplish this is to tweak the Service User Account used for running the SQL Server. The permissions of the Service Account can to be adjusted to allow it to create and remove SPN’s.
Use ADSI Edit (included in Server 2008) and connect to the Default Naming Context.
Locate the Service Account, open the security tab.
Select SELF in the group or user names windows and check the Allow box for ”Write public information” .

SELF permissions
After making the change restart the SQL Server service. The Service Account will register the SPN automatically.
To check if the SPN’s are registered correctly open a command prompt and do:
setspn -L Serviceaccount (e.g. SA_SQL2008_01)
The output should look like:
Registered ServicePrincipal Names for CN=SA_SQL2008_01, OU=Service Accounts, DC=Contoso, DC=com
MSSQLSvc/FQDN:1433
Works like a charm.

Sure did, great article. Gj!