Issue: You're getting error 114 in Azure AD Connect when syncing to your M365 tenant from AD
Cause: There is a deleted object (user) that is still trying to sync to the cloud, however, the cloud instance does not exist as an active user
Solution: Delete the user (object) using Msol cmdlet, remove-msoluser and run a delta sync
Step 1: Connect to msol service
Connect-msolservice
Step 2: Find the object guid or the user principal name from AAD Connect Error listing in Sync Service Manager and use the remove-msoluser cmdlet with object-ID or UPN parameter
Remove-MsolUser -ObjectId abc36d71-3589-4249-ab13-a5173db13f9f
OR
Remove-MsolUser -UserPrincipalName user@domain.com
Step 3: Run a delta sync on AAD Connect Server/DC
Import-Module adsync
start-adsyncsynccyle -policytype delta
The sync should go through and there should be no more errors.
Case 17666
Comments
0 comments
Article is closed for comments.