List of duplicate sites in SHarepoitn online

sns 9,226 Reputation points
2022-05-04T07:22:37.863+00:00

Is there any script to get the list of all duplicate sites and export it to csv file. below are the duplicate sites
ex: /sites/test
/sites/test1
/sites/test2

SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
9,560 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. CaseyYang-MSFT 10,321 Reputation points
    2022-05-05T01:58:49.457+00:00

    Hi @sns ,

    You could use following PowerShell commands:

    Connect-SPOService -Url https://xxx-admin.sharepoint.com  
    
    Get-SPOSite -Filter { Url -like "xxx.sharepoint.com/sites/test" } -Detailed | Export-CSV -LiteralPath C:\Temp\SitesInventory.csv  
    

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.