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
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
Hi @sns1,
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.
Hi Casey Yang,
Not only with test, if there are duplicate sites that also should show and come in the list..
HI Case Yang,
Did you have a chance to look in to my above comments? Just checking
Hi @sns1,
Does these duplicate sites have simliar site name? If so you could also use these PowerShell commands.
11 people are following this question.