Mar 23 2023 05:50 AM
Hello. We have AD Synced to Microsoft 365.
When covid hit, we had to abandon AD and start creating users in the cloud. Eventually, the server gave up and AD Sync stopped.
It's been a couple of years since then. Some of the users are still AD synced and we cannot edit their details simply because of the AD Sync status. With no server to disable AD Sync, what's the next best way to stop AD Sync and convert all old users to pure cloud users?
Mar 23 2023 06:05 AM
Sign into the AAD Connect Server and Sync the Delta
Start-ADSyncSyncCycle Delta
Turn off AAD Connect Sync
Set-MsolDirSyncEnabled -EnableDirSync $false
Convert Single User to Cloud Only (you can convert all the users that need to be cloud only)
Get-MsolUser -UserPrincipalName email address removed for privacy reasons | Set-MsolUser -ImmutableId "$null"
move user(s) to an OU that isn’t synchronized using AADC.
Set-MsolDirSyncEnabled -EnableDirSync $true
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily.
Mar 23 2023 06:08 AM
Mar 23 2023 06:15 AM
Mar 23 2023 06:21 AM
Mar 23 2023 06:26 AM
SolutionMar 23 2023 08:26 AM
Thank you this, in combination with your first message worked!
Appreciate your assistance!!
Mar 23 2023 06:26 AM
Solution