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...
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 ?
Noufalnfl
Oct 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