Category Archives: Active Directory

[ERROR] Could not find the Exchange Mailbox Administrators Universal Security Group through its well-known GUID

I came across a weird error the other day while running Exchange Server 2013 CU6 setup with the /PrepareAD switch.  The error (from the Exchange setup logs) was this: [12/02/2014 01:14:16.0727] [2] [ERROR] Could not find the Exchange Mailbox Administrators Universal Security Group through its well-known GUID 29a962c2-91d6-4ab7-9e06-8728f8f842ea.  Please make sure that Setup /prepareAD has… Read More: [ERROR] Could not find the Exchange Mailbox Administrators Universal Security… »

How old is my Active Directory Forest?

It’s sometimes interesting to know how old your AD forest is and when the various domains were created.  I recently came across a really useful TechNet Blog with a Powershell snippet to do just this.  My version shown below just has some slightly different formatting. # How old is the forest? Get-ADObject -SearchBase (Get-ADForest).PartitionsContainer `… Read More: How old is my Active Directory Forest? »

Find Windows XP machines in your AD Domain

If you haven’t heard that extended support for Windows XP ended earlier this year you’ve clearly been in a coma.  There are a number of well-publicised methods for finding out whether you still have XP machines in your environment.  Here is my own humble (and spectacularly over engineered) Powershell offering.   ######################################################### # # Name:… Read More: Find Windows XP machines in your AD Domain »

Multivalued attribute limits in Active Directory

There was in interesting discussion the other day on the ActiveDir.org mailing list. Someone asked how many values can be stored within the proxyAddresses mutlivalued attribute in Active Directory. The responses were reasonably consistent, with most people indicating that in Windows 2000 the number was in the range of approximately 800 to 850 and from… Read More: Multivalued attribute limits in Active Directory »

Powershell to check Active Directory for Exchange version

When you install a new version of Exchange or apply a Cumulative Update certain AD attributes are updated to reflect the change.  The updates are made in three different directory partitions (also known as naming contexts): Schema, Configuration and Domain.  The following Microsoft TechNet article is a good reference for the different versions and the… Read More: Powershell to check Active Directory for Exchange version »

The request subject name is invalid or too long

I had an interesting one recently when submitting a certificate request to a Windows Certificate Authority using certreq.exe.  The error that came back was: The disposition message is “Error Parsing Request The request subject name is invalid or too long. 0x80094001 (-2146877439)” I found several links to possible solutions but, as it turns out, the problem in… Read More: The request subject name is invalid or too long »