Forum Discussion
StefanKi
Dec 15, 2024Iron Contributor
AD connect not sync device objects
Hello, I have a challenge. I installed AD connect the user objects are synchronized. Only the device objects are not synchronized. AD connect for device sync is configured correctly. As soon as I cr...
Ankido
Dec 20, 2024Iron Contributor
Hi Stefan,
Based on what you’ve written, I suspect the issue might be:
- Existing objects have incorrect or incomplete attributes
Azure AD Connect only synchronizes objects that meet certain requirements. If the existing objects are missing necessary attributes, such as:
msDS-DeviceID (the unique ID of the device).
OperatingSystem and OperatingSystemVersion.
You can check these attributes for the existing device objects in Active Directory using the following PowerShell command:
Get-ADComputer -Filter * -SearchBase "OU=YourDevicesOU,DC=yourdomain,DC=com" -Property msDS-DeviceID, OperatingSystem, OperatingSystemVersion.
If any attributes are missing, make sure to populate them and then test the synchronization again.
Let me know of this is helpful