external user access
2 Topicssearching an External user in People picker and starting an invitation
I want to write code to search for non-existing external user email for next step giving me this email as suggestion for sending them an invitation. for example, there is a functionality by Standard SharePoint (the picture below) when you want to share the SharePoint site with some non- existing external user (OOB UI)771Views0likes1CommentGet details of all external users from the complete SharePoint online tenant
I am trying to export details of all external users from the complete SharePoint online tenant. Since the out of the box command just generates 50 users, I am trying the following command: Try { For ($x=0;;$x+=50) { $ExternalUsers += Get-SPOExternalUser -PageSize 50 -Position $x -ErrorAction Stop | Export-csv C:\temp\Externalusers.csv } } Catch {} $ExternalUsers however I want to export it to csv? Can someone assist in this?1.5KViews0likes1Comment