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
Mar 23, 2023Copper Contributor
We 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?
How do I do these steps without windows server or AD Connect?
Mar 23, 2023
the 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"
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!!