Forum Discussion
escupham
Oct 24, 2016Steel Contributor
List of SPO sites with external sharing enabled
What's the easiest way to get a list of all SharePoint Online sites that have external sharing enabled?
- SanthoshB1Bronze Contributor
You can use the below script to get and export this list easily.
Get-SPOSite -Detailed |Where-Object {$_.SharingCapability -ne "Disabled"}|select Url,SharingCapability |Export-csv <path>
- Dean_GrossSilver Contributor
In the O365 Admin Center, go to Resources, choose Sites, the page shows a listing with Sharing Status
- escuphamSteel Contributor
Thanks, not sure how I missed that! Now if we can just get a filter and export option added to that page....
- escuphamSteel Contributor
I see you can do a content search in the security center on ViewableByExternalUsers:true AND ContentType:document, but I'm looking for a list of sites only, not documents.