Forum Discussion
bpr1s3
Mar 23, 2023Copper Contributor
Convert AD Synced Users to Office 365 Users
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 ...
- Mar 23, 2023the below script is from MS online . you need to install the MSonline modull on your PC connect to MS online and try to clear the immutable ID using the below script
Get-MsolUser -UserPrincipalName "email address removed for privacy reasons" | Set-MsolUser -ImmutableId "$null"
bpr1s3
Copper Contributor
Hello eliekarkafy,
We do not have the AAD Connect server anymore.
That's the challenge. I see solutions in this forum with similar suggestions, but the lack of a server to execute the commands is the issue.
We do not have the AAD Connect server anymore.
That's the challenge. I see solutions in this forum with similar suggestions, but the lack of a server to execute the commands is the issue.
eliekarkafy
Mar 23, 2023MVP
did you try to clear the immutable ID from the users? than delete it and restore it back ?
- bpr1s3Mar 23, 2023Copper ContributorWe do not have an on-premise windows server with AD Connect installed anymore. As that stopped working during covid.
How do I do these steps without windows server or AD Connect?- eliekarkafyMar 23, 2023MVPthe below script is from MS online . you need to install the MSonline modull on your PC connect to MS online and try to clear the immutable ID using the below script
Get-MsolUser -UserPrincipalName "email address removed for privacy reasons" | Set-MsolUser -ImmutableId "$null"- bpr1s3Mar 23, 2023Copper Contributor
Thank you this, in combination with your first message worked!
Appreciate your assistance!!