Forum Discussion
AtanasM
Apr 13, 2022Iron Contributor
Delete alias from synced user in Admin Center
I cannot edit or remove an alias with onmicrosoft.com domain in the cloud, because the user is synced with the local Active Directory. The alias is not available in “Attribute Editor” in Active Direc...
- Apr 20, 2022To disable dirsync:
Set-MsolDirSyncEnabled -EnableDirSync $false
Once it's disabled, remove the alias via the admin center or Powershell, then re-enable dirsync:
Set-MsolDirSyncEnabled -EnableDirSync $true
VasilMichev
Apr 20, 2022MVP
To disable dirsync:
Set-MsolDirSyncEnabled -EnableDirSync $false
Once it's disabled, remove the alias via the admin center or Powershell, then re-enable dirsync:
Set-MsolDirSyncEnabled -EnableDirSync $true
Set-MsolDirSyncEnabled -EnableDirSync $false
Once it's disabled, remove the alias via the admin center or Powershell, then re-enable dirsync:
Set-MsolDirSyncEnabled -EnableDirSync $true
oliwer_sundgren
Apr 20, 2022Iron Contributor
I've ended up in a similar scenario and I ended up adding the alias manually in attribute editor, trigger a full AD sync, wait 24 hours and then deleted the alias from attribute editor and again triggered a full AD sync.
Not sure if this was just a bug with a side of luck but it might be worth trying
Not sure if this was just a bug with a side of luck but it might be worth trying