How to find the Object that belongs to a GUID

When troubleshooting an error message which only displays a GUID, and does not make any reference to a specific object, there are several tools that are used to find that object: ADExplorer, ADFind...etc.

Since most Admins have the Support Tools installed, below is a description of an easier way to find that object, by using LDP.

The search has to be done on the Domain Controller.

Start-Run- LDP

Connection –> Connect

 

Connect using the Global Catalog port: 3268

image

 

 

Connection – Bind

image

 

View - > Tree

image

 

OK

Right click on the domain -> Search

image

 

Under “Base DN” insert: <GUID=HereYouInsertTheGuid>

Under “Filter” insert: objectclass=*

 

image

 

Then click on Options, and change the limits as shown here:

 

image

 

 

If the time limit and/or the Timeout milliseconds are on 0 (as it is by default), then the search might not find anything, so it is recommended to increase those values.

 

Here the name of the user is “Greu Greuceanu”, and the results show a lot of information like: Distinguished Name,Creation date,UserPrincipalName, even the phone number:

image

 

If the error message comes in a similar format like:

Event ID: 9646
Description: Mapi session "
4034194C-21C1-4DC1-951D-652320577AN0 " exceeded the maximum of xxx objects ....

And the Event ID also only shows the GUID and does not point to any specific object, then the same steps as above should be followed, but the only difference will be that the criteria has to be modified since „Mapi Session“ means the search should be made for a Mailbox GUID.

This issue occurs if the Exchange Store.exe process cannot resolve the GUID to an msExchMailboxGuid attribute or to an objectGUID attribute. The Store.exe process may not be able to resolve the GUID if sibling domains exist in the same forest. A sibling domain is another domain that exists at the same level in the forest. When the Store.exe process tries to resolve the GUID, the Store.exe process sets the BaseDN parameter of the Lightweight Directory Access Protocol (LDAP) query to a value that is equal to the domain naming context of the user. If the Exchange server is in a sibling domain, the LDAP query returns no results.

 

If the GUID is not found in by searching with it’s original form, then it has to be modified as shown in the KB <https://support.microsoft.com/kb/899663>

 

Original GUID from the Event Log: 4034194C-21C1-4DC1-951D-651320577AN0

Divide it with backslashes: \40\34\19\4C\21\C1\4D\C1\95\1D\65\13\20\57\7A\N0

Invert the first 3 columns: \4C\19\34\40\C1\21\C1\4D\95\1D\65\13\20\57\7A\N0

(Leave the last 2 columns in their original form)

In the LDP, the search has to be done using:

Base DN: Just leave the Root Domain here

Filter: (&(objectclass=*)(msExchMailboxGuid=\4C\19\34\40\C1\21\C1\4D\95\1D\65\13\20\57\7A\N0))

image

And it should find the corresponding User.

 

Note: If there is any misconfiguration in the edited GUID such as one extra backslash or any hyphens, then the results will be NULL.