Forum Discussion
testing11
Sep 18, 2024Copper Contributor
Move Hybrid Joined devices to new tenant
I have a customer who wants to switch over the tenant due to some merger he has already moved the data of EXO and SPO and domain cutover is pending due to Hybrid Joined devices planning are not yet d...
Noufalnfl
Sep 18, 2024Copper Contributor
1.Remove the source domain hybrid joined Group Policy from the devices OU.
2.Keep all the devices domain joined only
3.Make sure all mail box migrate target domain and move source Tennent domain to Target Tennent as a custom domain
4.If they want to receive email from old domain you have to add proxy address as secondary email
2.Keep all the devices domain joined only
3.Make sure all mail box migrate target domain and move source Tennent domain to Target Tennent as a custom domain
4.If they want to receive email from old domain you have to add proxy address as secondary email
testing11
Oct 02, 2024Copper Contributor
When we say Remove the source domain hybrid joined Group Policy from the devices OU it will not trigger new PCs to join to Azure AD however, how do we make already Hybrid joined devices to Domain Joined only ?
and What difference end user will see After unjoining the machine from Hybrid Azure AD to just Domain Join ?
- NoufalnflOct 05, 2024Copper Contributor
Bulk hybrid removal script sample
$devices = Get-AzureADDevice -All $true | Where-Object {$_.DeviceTrustType -eq "Domain Joined"}
foreach ($device in $devices) {
Remove-AzureADDevice -ObjectId $device.ObjectId
}
When users access the new tenant, they will receive prompt from the new tenant asking them to trust it Once they trust there device is become Azure AD joined