I've been working with a customer this week to configure Hybrid Azure AD Join and co-management. In the first phase (HAADJ), most of my test devices successfully registered in Azure AD. However there were some stragglers. These devices didn't even show up as "Pending" in Azure AD. They just didn't appear at all.
It was time for troubleshooting. What is the best way to find out what is wrong? There are many things you can check.
Service Connection Point
As some of the domain joined devices had successfully registered in Azure AD already, it seemed unlikely that there was a problem with the Service Connection Point. However I had a look at it.
Beginning with version 1.1.819.0, Azure AD Connect provides you with a wizard to configure hybrid Azure AD join. Azure AD Connect deploys a Service Connection Point (SCP) into your Active Directory environment. A service connection point in AD is essentially an object that points to a specific service. The Azure AD Service Connection Point includes information on the following items in its keywords attribute:
- azureADId; The Azure Active Directory tenant ID
- azureADName; The Azure Active Directory tenant’s verified custom DNS domain name, or the *.onmicrosoft.com DNS domain name if no verified custom DNS domain name exists for the Azure AD tenant
CN=62a0ff2e-97b9-4513-943f-0d221bd30080,CN=Device Registration Configuration, CN=Services, CN=Configuration,DC=domain,DC=tld
- Launch ADSI Edit as an Enterprise Administrator.
- Connect to the Configuration Naming Context of the domain.
- Browse to CN=Configuration,DC=contoso,DC=com > CN=Services > CN=Device Registration Configuration
- Verify that the leaf object CN=62a0ff2e-97b9-4513-943f-0d221bd30080 exists (this is the same CN value for every organization)
- Select Properties
- Select keywords from the Attribute Editor window and click Edit
- Verify the value of azureADId
- Verify the value of azureADName
OU Sync
The next step is to check that the device is in an OU which is synchronized to Azure AD. This is a configuration in Azure AD Connect.
Navigate to the Domain and OU filtering screen and verify that the OU is selected for sync. I didn't find any problem here.
DSREGCMD
The next step was to have a look at one of the devices. You can get a lot of information using the DSREGCMD /STATUS cmdlet
In the Device State section I could see AzureADJoined = No. However the Diagnostics Data section gave me valuable information.
Failed to schedule Diagnostics Task. Error: 0x80041326
DSREGCMD /DEBUG /JOIN is also useful.
Cannot start Task: 0x80041326
Failed to schedule Join Task. Error: 0x80041326
This told me exactly where to find the problem. The issue was with the Workplace Join scheduled task.
Task Scheduler
Sure enough, I launched Task Scheduler and navigated to Microsoft > Windows > Workplace Join. I could see that all the tasks were disabled. In my experience some external configuration was preventing Azure AD registration on the device.
SCCM
A Resultant Set of Policy query showed me exactly where the problem was.
Computer Configuration > Administrative Templates > Windows Components > Device Registration > Register domain joined computers as devices was disabled.
What did this setting do? The description showed that this setting allowed devices to be silently registered in Azure AD. Disabling it obviously had the reverse effect and prevented the registration.
Solution
The solution was to remove this GPO setting from the affected devices.
I hope this helps. Until next time.....