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?
SanthoshB1
Oct 25, 2016Bronze 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>