Sep 17 2024 08:20 PM
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 done. Customer has 1000 devices
So can anyone please help us understanding the process of switching over the tenant during weekend.
Customer is open to do the POC but the end user impact should be NO or minimum.
Any suggestions are highly appreciated.
Sep 17 2024 11:12 PM
Sep 18 2024 01:14 AM
@rahuljindal-MVP dsregcmd /leave requires local admin rights also we have to do it for 1K Pcs so it would not help as we have to do it during the weekend only
Sep 18 2024 01:47 AM
Sep 18 2024 03:28 AM
Sep 18 2024 01:34 PM
Oct 02 2024 02:22 AM - edited Oct 02 2024 02:23 AM
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 ?
Oct 02 2024 02:27 AM
Oct 05 2024 11:27 AM
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