A comprehensive suite of productivity tools and cloud services that enhance collaboration, communication, and efficiency. Combining classic Office apps with advanced Microsoft 365 features, it supports both personal and business needs
Hi Dave,
You may try running the following command in SharePoint Online Management Shell Windows PowerShell to remove the external user and then check the outcome.
1.Remove the user from SharePoint Online.
$user = Get-SPOExternalUser -Filter *** Email address is removed for privacy ***
Remove-SPOExternalUser -UniqueIDs @($user.UniqueId)
For the details, please refer to https://technet.microsoft.com/en-us/library/jj730437.aspx
2.Run the following command to check if the external user would display.
Get-SPOUser -Site https://contoso.sharepoint.com/ |fl
If the user name still displays, you can run the folloiwng command to remove it. Please check the user's LoginName in the result and replace the example in the following command. If it fails to run, check the command and run it again.
Remove-SPOUser -Site https://contoso.sharepoint.com/ -LoginName someone_example.com#ext#@contoso.onmicrosoft.com
To install SharePoint Online Management Shell Windows PowerShell, please refer to
Set up the SharePoint Online Management Shell Windows PowerShell environment
Thanks,
Felix