Microsoft 365 features that help users manage their subscriptions, account settings, and billing information.
Hi Zak_cal,
- The external users will still show in the Active Users list and the User Profiles list ( SharePoint admin center > user profiles) after we stop sharing the particular file.
We can also check the external users in People and Groups
https://domain.sharepoint.com/_layouts/15/people.aspx?MembershipGroupId=0
- If sharing is not disabled, these users will stay in our Office tenant unless we delete them manually.
- Yes.
- If you don't want these external users to access the data in your tenant, it's recommended to delete them from both active users list and the user profiles list.
- There is no out of box option to achieve this.
Connect-SPOService -Url https://domain-admin.sharepoint.com -credential $credential
Get-SPOExternalUser -PageSize 50 | ft
- Please try deleting the external user using the following commands:
$user=Get-SPOExternalUser -Filter user_externaldomainname.onmicrosoft.com
Remove-SPOExternalUser -UniqueIDs @($user.UniqueId)
Thanks,
James