Once the scheduled time arrives, the rename process begins automatically. Monitor progress using PowerShell commands to track overall status and individual site progress.
Check the overall tenant rename status regularly:
Get-SPOTenantRenameStatus
This returns information about the current phase, progress percentage, and any errors encountered. The process goes through several phases: Queued, InProgress, and Completed.
For detailed site-by-site progress, check individual sites:
Get-SPOSiteRenameState -Identity "https://oldtenant.sharepoint.com/sites/sitename"
Replace the URL with actual site URLs from your tenant. This shows whether each site has been renamed successfully.
You can also get a list of all sites and their rename status:
Get-SPOSite -Limit All | ForEach-Object { Get-SPOSiteRenameState -Identity $_.Url }
Warning: During the rename process, users cannot access SharePoint sites or OneDrive. Office applications may show save errors. New site creation, OneDrive provisioning, and Teams channel creation are blocked.
Verification: The rename is complete when Get-SPOTenantRenameStatus shows a "Completed" status and all individual sites show successful rename states.