Which certificate template should I use for Domain Controllers

In fact, you have three possibilities: Domain Controller (Windows Server 2000) Domain Controller Authentication (Windows Server 2003) Kerberos Authentication (Windows Server 2008 and above) This explanation comes from Russell Tomkins a Microsoft Premier Field Engineer in a very good post which you can find here: Creating Custom Secure LDAP Certificates for Domain Controllers with Auto […]

[Solved] Send-MailMessage : Cannot convert ‘System.Collections.ArrayList’

You may get the following error message: Send-MailMessage : Cannot convert ‘System.Collections.ArrayList’ to the type ‘System.String’ required by parameter ‘Body’. Specified method is not supported. The reason This error message is really explicit: The body of the mail must be a string and you are giving an array as input. The solution Unfortunately, you cannot […]